qq_珞珈情末_04182519
2017-01-23 12:54
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
HelloWorld hello = new HelloWorld();
hello.show(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void show(int[] scores){
int[] scores = new int[]{89,-23,64,91,119,52,73};
Arrays.sort(scores);
int count = 0;
for(int i = scores.length - 1; i >= 0; i--){
if(scores[i]<0||scores[i]>100){
continue;
}else{
count++;
}
if(count>3){
break;
}
System.out.println(scores[i]);
}
}
}
你确定这个代码能编译?
建议楼主查看同学代码中,第一个很不错呢,思路清晰明了,
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题