哪里錯了求大神解答
package 張帥;
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
int[] scores = {89, -23, 64, 91, 119, 52, 73};
System.out.println("考試成績前三名為");
HelloWorld hello = new HelloWorld();
hello.showTop3(scores);
}
public void showTop3 (int[] scores){
Arrays.sort(scores);
int num = 0;
for ( int i = scores.length - 1; i >= 0; i-- ) {
if (scores[i] < 0 || scores[i] > 100);
continue;
}
num++;
if (num >3){
break;
}
System.out.println(scores[i]);
}
}
}
2018-08-23
你的“if (scores[i] < 0 || scores[i] > 100);” 后面為什么是“;”?
2018-08-22
2018-08-22
import java.util.Arrays;
public class HelloWorld {
? ? public static void main(String[] args) {
? ? ? ? int[] scores = {89, -23, 64, 91, 119, 52, 73};
? ? ? ? System.out.println("考試成績前三名為");
? ? ? ? HelloWorld hello = new HelloWorld();
? ? ? ? hello.showTop3(scores);
? ? }
? ? public void showTop3 (int[] score){
? ? ? ? Arrays.sort(score);
? ? ? ? int num = 0;
? ? ? ? for ( int i = score.length - 1; i >= 0; i-- ) {
? ? ? ? ? ? if (score[i] < 0 || score[i] > 100)
? ? ? ? ? ??
? ? ? ? ? ? ? ? continue;
? ? ? ? ? ??
? ? ? ? ? ? num++;
? ? ? ? ? ??
? ? ? ? ? ? if (num >3){
? ? ? ? ? ? ? ? break;
? ? ? ? ? ? }
? ? ? ? ? ? System.out.println(score[i]);
? ? ? ? }
? ? }
}
2018-08-22
= =你的num++和打印都不在循環(huán)里面呀。。