小烟火
2018-08-28 18:46
哪一步控制的只输出三个成绩的
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int[] scores={ 89 , -23 , 64 , 91 , 119 , 52 , 73};
HelloWorld he = new HelloWorld();
he.sort_score(scores);
}
//定义方法完成成绩排序并输出前三名的功能
private void sort_score(int[] scores){
Arrays.sort(scores);
int count=0;
System.out.println("考试成绩的前三名为:");
for(int i=scores.length-1;i>0;i--){
if(0<=scores[i]&&scores[i]<=100){
count++;
System.out.println(scores[i]);
if(count>2){
break;
}
else
continue;
}
}
}
}
方法里的for 循环控制只输出三个成绩
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题