问答详情
源自:7-1 编程练习

大神来求解

import java.util.Arrays;
public class HelloWorld {
    
    //完成 main 方法
    public static void main(String[] args) {
        
        int[] scores = {89, -23, 64, 91, 119, 52, 73};
        HelloWorld hello = new HelloWorld();
        int[] scoreRank = hello.rank(scores);
        System.out.println(Arrays.toString(scoreRank));
        
    }
    
    //定义方法完成成绩排序并输出前三名的功能
    public int[] rank(int[] scores) {
        int[] scoreRank = new int[3];
        Arrays.sort(scores);
        int j = 0;
        for (int i = scores.length - 1; i <= scores.lenght - 3; i--) {
            scoreRank[j] = scores[i];
            j++;
        }
        return scoreRank;
    } //用来求数组scores中最大的三个数。for循环有点问题,可我看不出来,帮我看看!

提问者:慕雪芸茗 2016-03-12 21:17

个回答

  • qq_叶良辰_3
    2016-03-12 21:46:16
    已采纳

     public int[] rank(int[] scores) {
            int[] scoreRank = new int[3];
            Arrays.sort(scores);
            int j = 0;
            for (int i = scores.length - 1; i <= scores.lenght - 3; i--) {
                scoreRank[j] = scores[i];
                j++;
            }
            return scoreRank;
        } //用来求数组scores中最大的三个数。for循环有点问题,可我看不出来,帮我看看!

    你循环里的

    第一:scores.lenght--->出问题了

    第二:结果出来都是零

    你自己还是看看文档吧