A. 24 B. 25 C. 18 D. 17
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};
A. 3 B. 4 C. 5 D. 6
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][];
A. 对 B. 错