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