为了账号安全,请及时绑定邮箱和手机立即绑定

 //完成 main 方法

    public static void main(String[] args) {

     int[] scores={89,-23,64,91,119,52,73};

     //创建对象

     HelloWorld hello=new HelloWorld();

     System.out.println("考试成绩前三名为:");

     //调用方法

     hello.rank(scores);

        

        

        

    }

    

    //定义方法完成成绩排序并输出前三名的功能

    public void rank(int[] scores){

      Arrays.sort(scores);

      for(int i=scores.length-1,count=0;i<scores.length;i--){

        if(scores[i]>100||scores[i]<0)continue;

    count++;if(count>3)break;System.out.println(scores[i]);    

      }

      

    }


正在回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信