为什么会出现这个问题?
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7 at HelloWorld.showTop3(HelloWorld.java:17) at HelloWorld.main(HelloWorld.java:9) 考试成绩的前三名为:
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
System.out.println("考试成绩的前三名为:");
int[] scores = {89 , -23 , 64 , 91 , 119 , 52 , 73};
HelloWorld hello = new HelloWorld();
hello.showTop3(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void showTop3(int[] scores){
Arrays.sort(scores);
int num=0;
for(int i = scores.length; i >= 0; i--){
if(scores[i]<0 || scores[i]>100){
continue;
}
num++;
if(num>3){
break;
}
System.out.println(scores[i]);
}
}}