怎么错了,报错郁闷啊
error: unreachable statement
num ++;
^
1 error
2015-01-13
public class HelloWorld {
// 完成 main 方法
public static void main(String[] args) {
int[] scores = { 89, -23, 64, 91, 119, 52, 73 };
HelloWorld hello = new HelloWorld();
hello.scoresSort(scores);
}
// 定义方法完成成绩排序并输出前三名的功能
public void scoresSort(int[] scores) {
Arrays.sort(scores);
int num = 0;
for (int i = scores.length - 1; i >= 0; i--) {
if ((scores[i] < 0) || (scores[i] > 100)) {
num++;
continue;
}
if (num > 3) {
break;
}
System.out.println(scores[i]);
}
}
}
举报