在本地可以运行成功,但是提交到我们这个编译器里面,运行没有反应
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
int[] scores={ 89 , -23 , 64 , 91 , 119 , 52 , 73};
HelloWorld hello =new HelloWorld();
hello.sortScore(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void sortScore(int[] scores){
Arrays.sort(scores);
System.out.println(Arrays.toString(scores));//输出排序数组
System.out.println("考试成绩的前三名为:");
//num 控制输出的排名前3数
for(int i=scores.length-1,num=1;i>=0;i--){
if(scores[i]<=100&&scores[i]>0&&num<4){
System.out.println(scores[i]);
num++;
}else
continue;
}
}
}