问答详情
源自:7-1 编程练习

我这哪里错了呀

import java.util.Araays;



public class HellWorld{

    

    //完成 main 方法

    public static void main(String[] args) {

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

        

        HellWorld hello=new HellWorld ();

        

        hello.top(scores);

    }

        

        

        public void top(int[] sco){

            

         Arrays.sort(sco);

        int nums=0;

        

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

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

                continue;

            }

            nums++;

            if(nums>3){

                break;

            }

        }

        System.out.println(sco[i]   );

        }


提问者:qq_枉生_3 2018-07-19 09:55

个回答

  • 张小布0
    2018-07-19 14:25:51
    已采纳

    System.out.println(sco[i]);
    最后一句放到for循环里面。就是向上移动一行
    for (int i = sco.length - 1; i >= 0; i--) {
        if (sco[i] < 0 || sco[i] > 100) {
            continue;
        }
        nums++;
        if (nums > 3) {
            break;
        }
        System.out.println(sco[i]);
    }

  • 慕容9324470
    2018-07-19 12:02:48


    import java.util.Araays;



    public class HellWorld{

        

        //完成 main 方法

        public static void main(String[] args) {

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

            

            HellWorld hello=new HellWorld ();

            

            hello.top(scores);

        }

            

            

            public void top(int[] sco){

                

             Arrays.sort(sco);

            int nums=0;

            

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

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

                    continue;

                }

                nums++;

                if(nums>3){

                    break;

                }

          System.out.println(sco[i]   );   }

           

            }


  • qq_懵懂的岁月_0
    2018-07-19 11:20:12

    传参错了 Int[] scores.

    你要理解 你传进去的是你定义好的数组。