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

我什么我的运行之后是这样的? 运行成功 考试成绩的前三名为: 119 91 89

import java.util.Arrays;

public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

        HelloWorld hello = new HelloWorld();

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

        hello.scoressort(scores);

        

        

    }

    

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

    public void scoressort(int[] scores){

        Arrays.sort(scores);

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

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

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

                continue;

            }

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

        }

    }

}


正在回答

3 回答

把 && 改为 ||

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

import java.util.Arrays;
public class A {

    

    //完成 main 方法

    public static void main(String[] args) {

        A hello = new A();

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

        hello.scoressort(scores);

        

        

    }

    

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

    public void scoressort(int[] scores){

        Arrays.sort(scores);
        int count=1;
        System.out.println("考试成绩的前三名为:");

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

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

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

        }

    }

}

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

scores[i]<0&&scores[i]>100????

一个数能同时小于0并且大于100么,中间应该是or

另外你的FOR循环也是很简单粗暴呀,完全没考虑数组后几个数的想法呀。

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

哎呦_z 提问者

Arrays.sort(scores); 这个不是已经先排好顺序了吗! 就差个||
2018-08-19 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我什么我的运行之后是这样的? 运行成功 考试成绩的前三名为: 119 91 89

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