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

为啥不能用待返回值的方法呢

一开始想用待返回值的,一看答案都是不带返回值的

正在回答

2 回答

import java.util.Arrays;
public class HelloWorld {
   
    //完成 main 方法
    public static void main(String[] args) {
        HelloWorld hello = new HelloWorld();
        int[] scores = {89 , -23 , 64 , 91 , 119 , 52 , 73};
        int[] firstScores = hello.firstScore(scores);
        System.out.println("考试成绩的前三名为:");
        for(int a:firstScores)
            System.out.println(a);
    }
   
    //定义方法完成成绩排序并输出前三名的功能
    public int[] firstScore(int[] scores){
        int[] firstScores = new int[3];
        int time=0;
        Arrays.sort(scores);
        for(int i=scores.length-1;i>=0;i--){
            if(scores[i]<=100&&scores[i]>=0){
                firstScores[time]=scores[i];
                time++;
                if(time==3)
                    break;
            }
        }
        return firstScores;
    }
}

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

只能返回一个数

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

举报

0/150
提交
取消

为啥不能用待返回值的方法呢

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