下列程序的运行结果是()。public class Animal {static int a[ ]=new int[10];public static void main(String args ) {System.out.println(a[9]);}}
A: 输出零
B: 编译时正确,运行时将产生错误
C: 输出空
D: 编译时将产生错误
A: 输出零
B: 编译时正确,运行时将产生错误
C: 输出空
D: 编译时将产生错误
举一反三
- 下列程序的运行结果是______。public class Person {static int arr[ ]=new int[10];public static void main(String args ) { System.out.println(arr[9]);}} A: 输出零 B: 编译时正确,运行时将产生错误 C: 输出空 D: 编译时将产生错误
- 阅读下列代码: public class Person{ static int arr[]=new int[10]; public static void main(String args){ System.out.println(arr [9]); } } 该代码的运行结果是______。 A: 编译时将产生错误 B: 编译时正确,运行时将产生错误 C: 输出零 D: 输出空
- 阅读下列代码段:public class Person{static int arr[ ] = new int[10]; public static void main(String[] args){ System.out.println(arr[9]); } }该代码的运行结果是() A: 编译时将产生错误 B: 编译正确,运行时将产生错误 C: 输出零 D: 输出空
- public class T18 {[br][/br] static int arr[] = new int[10]; public static void main(String a[]) { System.out.println(arr[1]); } } 哪个语句是正确的?() A: 编译时将产生错误 B: 编译时正确,运行时将产生错误 C: 输出零 D: 输出空
- 给出下面代码: public class Person{ static int arr[] = new int[10] public static void main(String a[]){ System.out.println(arr[1]) } } 哪个语句是正确的? A: 编译时将产生错误 B: 输出零 C: 编译时正确,运行时将产生错误 D: 输出空