下面程序段的运行结果是()。int n=0;while(n++<=2);Console.WriteLine(n);
查看答案
正确定义一维数组a的方法是( )。
A. int a[10];
B. int a(1);
C. int[] a;
D. int[10] a;
下列定义一维数组a并初始化错误的方法是()。
A. int[] a={1,2,3,4,5};
B. int[] a=new int[5]{1,2,3,4,5};
C. int[] a=new int[5];a={1,2,3,4,5};
D. int[] a=new int[]{1,2,3,4,5};
分析下面这段代码,执行后count的值为()。int i,j;int count=0;for(i=0;i<4;i++)for(j=0;j<6;j++)count++;
A. 15
B. 24
C. 20
D. 21
( )命名空间在.NET Framework中又称根命名空间。
A. System.IO
B. System
C. System.Treading
D. System.Data