import java.util.Arrays; public class HelloWorld { //完成 main 方法 public static void main(String[] args) { int[] socres={89 , -23 , 64 , 91 , 119 , 52 , 73}; HelloWorld hello= new HelloWorld(); //定义对象 hello.rankSocres(socres); //使用方法 } //定义方法完成成绩排序并输出前三名的功能 public void rankSocres(int[] socres){ Arrays.sort(socres); int n=3; System.out.println("考试成绩的前三名为:"); for(int i=socres.length-1;i>=0 && n!=0;i--){ if(i<0 || i>100) //无效的成绩直接排除 continue; else{ System.out.println(socres[i]); n--; //用来确定已经输出了前三名 } } }; }
XDTheSUN
2014-10-29
0 回答
举报
0/150
提交
取消