题目内容

社会计划模式的口号是让我们获得事实真相,并采用合乎逻辑的项目

A. 对
B. 错

查看答案
更多问题

测一测(模块6_3)定义了int型二维数组a[6][7]后,数组元素a[3][4]前的数组元素个数为()。

A. 24
B. 25
C. 18
D. 17

测一测(模块6_3)下面的二维数组初始化语句中,正确的是()。

A. float[2][2] a={{0.1f,0.2f},{0.3f,0.4f}};
B. int[][] a={{1,2},{3,4}};
C. int[][] a=new int[2][3]{{1,2},{3,4}};
D. int[][] a=new int[][]{1,2,3,4};

测一测(模块6_3)下面程序代码运行结果是()int[][] a={{1,2,3},{4,5,6}};System.out.println(a[1][1]);

A. 3
B. 4
C. 5
D. 6

测一测(模块6_3)下面哪一项不是创建数组的正确语句?

A. float[][] f=new float[6][6];
B. float[] f=new float[6];
C. float[][] f=new float[][6];
D. float[][] f=new float[6][];

答案查题题库