单项选择题
1. 下面程序的运行结果是( )public static void main( String[ ] args ) {
int x = 30;
int [ ] numbers = new int[x];
x = 60;
System.out.println( numbers.length ) ; }
A、20
B、30
C、50
D、60
点击查看答案&解析
