信号不出来错误 大佬们
package com.imooc;
import java.util.Arrays;
public class Demo06 {
public static void main(String[] args) {
int scores[]={89 , -23 , 64 , 91 , 119 , 52 , 73};
System.out.println("前三名的成绩:");
Demo06 hello=new Demo06();
hello.show(scores);
}
public void show(int[] scores){
Arrays.sort(scores); //对成绩升序排序
int count=0; //定义变量用于存储有效成绩
for(int i=scores.length-1;i>=0;i++){
if((scores[i]<0)||(scores[i]>100)){ //判断成绩是否有效
continue;
}
count++; //有效成绩加一
if(count>3){
break;//停止执行
}
System.out.println(scores[i]);
}
}
}