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

为什么我的代码没有跳出循环,我要的前三名但是总输出五个

import java.util.Arrays;

public class HelloWorld {
    public static void main(String[] args) {
        HelloWorld hello = new HelloWorld();
    int []scores = {89,-23,64,91,119,52,73};
    System.out.println("考试成绩的前三名为:");
        hello.print(scores);
    }
    public void print(int []scores) {
        Arrays.sort(scores);
        for(int i = scores.length - 1;i >=0;i--) {
            int count = 0;
            if(scores[i]<0 || scores[i]> 100){
            continue;   
            }
                
                count ++;
            if(count > 3){
                break;
            }
            System.out.println(scores[i]);
        }
        
    }

}

正在回答

1 回答

int count=0;你放在for循环里面,循环的时候每次都初始化为0,那就永远不可能大于3

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

举报

0/150
提交
取消

为什么我的代码没有跳出循环,我要的前三名但是总输出五个

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