import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int [] scores={89,-23,64,91,119,52,73};
System.out.println("考试成绩的前三名为:");
HelloWorld hello=new HelloWorld();
hello.top3(scores);
}
public void top3(int[]scores){
int count=0;
Arrays.sort(scores);
for(int i=scores.length;i>=0;i--){
if(scores[i]<0||scores[i]>100){
continue;
}
count++;
if(count>3){
break;
}
System.out.println(scores[i]);
}
}
//定义方法完成成绩排序并输出前三名的功能
错误信息为:考试成绩的前三名为:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7
at HelloWorld.top3(HelloWorld.java:16)
at HelloWorld.main(HelloWorld.java:9)
}
天启之魂
相关分类