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

为什么输出五个数


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.showTop3(scores);

        

        

        

    }

    

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

    public void showTop3(int [] scores){

        Arrays.sort(scores);

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

            int num = 0;

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

                continue;

            }

            num++;

            if(num > 3){

                break;

            }

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

        }

    }

    


正在回答

1 回答

首先你的int num =0是必须定义在循环外的,其次呢因为continue 语句一旦满足是不会执行循环体后面的语句的,你在看下。

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

幕布斯0489230 提问者

非常感谢!
2017-08-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么输出五个数

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