She gets beautiful every time I see her.
A. more
B. the most
C. more and more
D. most
查看答案
定义了int型二维数组a[6][7]后,数组元素a[3][4]前的数组元素个数?
A. 24
B. 25
C. 18
D. 17
数组在Java中储存在?
A. 栈
B. 队列
C. 堆
D. 链表
下面不是创建数组的正确语句?
A. floatf[][]=newfloat[6][6];
B. loatf[]=newfloat[6];
C. floatf[][]=newfloat[][6];
D. float[][]f=newfloat[6][];
下面程序的运行结果是?main() {int x=30;int[] numbers=new int[x];x=60;System.out.println(numbers.length);}
A. 60
B. 20
C. 30
D. 50