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