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

来源:7-1 编程练习

星宿下钒

2019-05-24 13:16

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回答

  • 君语东风醉
    2019-05-24 16:06:51
    已采纳

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

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题