题目内容

1、下面正确的数组初始化语句是()。

A. char str[] = "hello";
B. char str[100] = "hello";
C. char str[] = {'h','e','l','l','o'};
D. char str[] = { 'hello' }

查看答案
更多问题

2、下列程序段的运行结果是()。int a[][] = {{1,2,3},{4,5,6}};System.out.println( a[1][1] );

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

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

答案查题题库