为了账号安全,请及时绑定邮箱和手机立即绑定
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--;    //用来确定已经输出了前三名
          }
       }
    };
  
}


正在回答

0 回答

举报

0/150
提交
取消
Java入门第一季(IDEA工具)升级版
  • 参与学习       1165244    人
  • 解答问题       17581    个

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

进入课程
意见反馈 帮助中心 APP下载
官方微信