2、下列程序段的运行结果是()。int a[][] = {{1,2,3},{4,5,6}};System.out.println( a[1][1] );
查看答案
3、下面创建数组不正确的是()。
A. float[][] f = new float[3][4];
B. float f[] = new float[6];
C. float[][] f = new float[][4];
D. float[][] f = new float[6][];
4、下列数组声明,错误的是()。
A. int a[]
B. int a()
C. int[][] a
D. int[] a[]
5、定义了int型二维数组a[6][7]后,数组元素a[3][4]前的数组元素个数为()。
A. 24
B. 18
C. 25
D. 17
You didn’t call or send an _________.