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

为什么我使用for循环嵌套运行成功,但是没有输出呢,请教大神

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

        

        

    }

    

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

    

    public void pm(int[] scores){

        Arrays.sort(scores);

        for(int count=0;count>3;count++){

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

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

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

                

                }continue;

            }

         

            

        }

        

        

        

    }

    

    


正在回答

1 回答

你这个完全没有输出是因为for(int count=0;count>3;count++),count初始值为0,判断条件是count>3,0>3是false,所以直接跳出循环。但这边改完后虽然有输出,但你这个代码的逻辑问题还是挺严重的,完全不能输出正确结果,你再思考下你的逻辑

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

举报

0/150
提交
取消

为什么我使用for循环嵌套运行成功,但是没有输出呢,请教大神

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