• 2022-06-09
    ‎下列程序的运行结果是______。‏public class Person {‏static int arr[ ]=new int[10];‏public static void main(String args ) {‏ System.out.println(arr[9]);‏}‏}‏
    A: 输出零
    B: 编译时正确,运行时将产生错误
    C: 输出空
    D: 编译时将产生错误
  • 举一反三