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

我自己编写的代码,为什么没有成绩输出呢???

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

    }

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

    public void scs(int[] scores){

        int count=3;

        Arrays.sort(scores);

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

            if (scores[i]>100||scores[i]<0){//不满足条件的成绩跳出

               continue;

               }

            else{

                count--;

                System.out.println(scores[i]);//依次输出前三名成绩

            }   

        }

    }      

}


正在回答

1 回答

#1

地狱de指挥官 提问者

非常感谢!
2016-10-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我自己编写的代码,为什么没有成绩输出呢???

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