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

为什么不能出现成绩 只出现了“考试前三名成绩” 求大神解答

import java.util.Arrays;


public class HelloWorld {
   
    //完成 main 方法
    public static void main(String[] args) {
      int[] scores={89,-23,64,91,119,52,73} ;
      System.out.println("考试成绩前三名为:");
      HelloWorld hello=new HelloWorld();
      hello.show(scores);
    }
     public void show(int[] scores){
         Arrays.sort(scores);
         int num=0;
         for(int i=scores.length-1;i>=0;i--){
            
          if (scores[i]<100||scores[i]>0){
              continue; 
          }
          num++;
          if(num>3){
              break;
          }
        System.out.println(Arrays.toString(scores)); 
     }
    
    }
   
    }//定义方法完成成绩排序并输出前三名的功能
   
   
   
   
 

正在回答

3 回答

http://img1.sycdn.imooc.com//57392c560001371d06560747.jpg

if 条件判断前三名成绩 了  num 》 3  就跳出循环  进行打印  所以只能 显示前三明成绩

0 回复 有任何疑惑可以回复我~

public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

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

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

        HelloWorld hello = new HelloWorld ();

        hello.showTop(scores);

        

        

        

    }

    

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

    public void shouTop3(int[] score){

        Arrays.sort(scores);

        int num = 0;

        for (int i = scores.length = 1; i >=0; i--){

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

                continue;

            } numu++;

            if (num > 3){

                break;

            }

            System.out.println(scores[1]);

        }

    }

 }   


0 回复 有任何疑惑可以回复我~

public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

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

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

        HelloWorld hello = new HelloWorld ();

        hello.showTop(scores);

  }

    

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

    public void shouTop3(int[] score){

        Arrays.sort(scores);

        int num = 0;

        for (int i = scores.length = 1; i >=0; i--){

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

                continue;

            } numu++;

            if (num > 3){

                break;

            }

            System.out.println(scores[1]);

        }

    }

    


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么不能出现成绩 只出现了“考试前三名成绩” 求大神解答

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信