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

数组的下标是从0开始的,所以循环是从scores.length -1;开始的。

public static void main(String[] args) {


    int scores[] = {89, -23, 64, 91, 119, 52, 73};


    HelloWorld helloWorld = new HelloWorld();

    helloWorld.chengji(scores);
}

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

public void chengji(int[] scores) {


    Arrays.sort(scores);
    int num = 0;
    for (int i = scores.length -1; i >=0; i--) {
        if (scores[i] < 0 || scores[i] > 100) {
            continue;
        }
        num++;

        if (num>3){
            break;
        }

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

}


正在回答

1 回答

在方法中使用 Arrays 类的 sort( ) 方法对数组进行排序,默认按升序排列,注意 Arrays 类的使用需要导入 java.util.Arrays


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

举报

0/150
提交
取消

数组的下标是从0开始的,所以循环是从scores.length -1;开始的。

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