溺象海
2018-10-03 00:03
public static void main(String[] args) {
int scores[] = {89, -23, 64, 91, 119, 52, 73};
HelloWorld helloWorld = new HelloWorld();
helloWorld.chengji(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void chengji(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]);
}
}
在方法中使用 Arrays 类的 sort( ) 方法对数组进行排序,默认按升序排列,注意 Arrays 类的使用需要导入 java.util.Arrays
Java入门第一季(IDEA工具)
1168262 学习 · 18754 问题
相似问题