8-1 編程練習(xí) 另一個思路
import java.util.Arrays;
public class HelloWorld {
? ??
? ? //完成 main 方法
? ? public static void main(String[] args) {
? ? ? ? int []scores={89 , -23 , 64 , 91 , 119 , 52 , 73} ;
? ? ? ? System.out.println("考試成績的前三名為:");
? ? ? ? HelloWorld hello=new HelloWorld();
? ? ? ? hello.getTop3(scores);
? ? ? ??
? ? ? ??
? ? ? ??
? ? }
? ??
? ? //定義方法完成成績排序并輸出前三名的功能
? ??
? ? public void getTop3(int[] scores) {
? ? ? ? Arrays.sort(scores);
? ? ? ? int count=0;
? ? ? ? for(int i=scores.length-1;count<3;i--){
? ? ? ? ? ? if(scores[i]>=0&&scores[i]<=100){
? ? ? ? ? ? ? ? System.out.println(scores[i]);
? ? ? ? ? ? ? ? count++;
? ? ? ? ? ? }
? ? ? ? }
? ? }
? ??
? ??
? ??
? ??
? ??
? ??
? ??
? ??
}
2016-03-13
可以啊
2016-05-22
樓主你能不能解釋一下你的思路,最后部分
?? for(int i=scores.length-1;count<3;i--)//這里為什么要用count<3
還有最后這個?? ? count++;的意義是什么?
? ? ? ? ? ??
? ? ? ? ? ?