麻烦大佬帮忙看看问题出在哪了
为什么我最后输出的是最小的三个,而且该剔除的数据没有剔除。。。。在线求大佬解答
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.topThree(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void topThree(int[] scores){
Arrays.sort(scores);
for(int i=scores.length-1;i>=0;i--){
if(scores[i]<0||scores[i]>100)
continue;
}
for(int j=0;j<=2;j++){
System.out.println(scores[j]);
}
}
}