下列代码段在运行时会产生______异常。 public class ex32 { public static void main(String[] args) {

admin2008-01-11  48

问题 下列代码段在运行时会产生______异常。      public class ex32      {           public static void main(String[]  args)           {                 int a[]  = {1,  23,  24,  56,  37,  9,  12};                 for(int k = 0;  k < a.length;  k++)                 {                      if(a[k]  > a[k + 1])                      {                            int x = a[k];                            a[k] = a[k + 1];                            a[k + 1] = x;                       }                 }            }      }

选项 A、NumberFormatException
B、ArithmeticException
C、ArrayIndexOutOfBoundsException
D、IOException

答案C

解析
转载请注明原文地址:https://kaotiyun.com/show/iEnp777K
0

最新回复(0)