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

又是那里错了啊 学了这么多 每节练习都是都是看着参考答案输入完的 完了还不对 彻底没信心了 大学专业就这个 我完蛋了

正在回答

2 回答

左侧也有相应的代码,您可以参考一下

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

public static void main(String[] args) {

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

        

        HelloWorld hello=new HelloWorld();

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

        hello.top(scores);

        

    }

    public void top(int[] scores){

        Arrays.sort(scores);

        int num=0;

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

            if(num>=3)

                break;

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

                continue;

            }else{

                num++;

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

            } 

        }

    }

}

给你一份代码你可以参考一下,或者对照一下

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

举报

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