求大神指导下哪里出错了,为什么运行有问题
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
HelloWorld hello=new HelloWorld();
int[] nums={89 , -23 , 64 , 91 , 119 , 52 , 73};
System.out.println("考试成绩的前三名为");
hello.show(nums);
}
public void show(int[] nums){
Arrays.sort(nums);
int sum=0;
for(int i=nums.length;i>=0;i--){
if(nums[i]<0||nums[i]>100){
continue;
}
sum++;
if(sum>3){
break;
}
System.out.println(nums[i]);
}
}
}
运行结果:
考试成绩的前三名为
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7
at HelloWorld.show(HelloWorld.java:15)
at HelloWorld.main(HelloWorld.java:9)