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

这题带返回值怎么写?

写了半天,求教一下,谢谢

提问者:慕仙1776787 2016-03-30 23:58

个回答

  • 哿尘雨
    2016-03-31 11:15:26
    已采纳

    返回值一次只能返回一条,所以要么你重复调用方法3次,输出三次,要么你把前3名的成绩转成String型返回

  • wshyzx
    2016-06-03 15:00:08

    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[] topThree=hello.getScores(scores);

            System.out.println("考试成绩的前三名为:");

            for(int top:topThree)

            System.out.println(top);

        }

        

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

        public int[] getScores(int[] scores){

            Arrays.sort(scores);

            int[] newScores=new int[3];

            for(int i=scores.length-1,j=0; i>=0&&j<=2; i--){

                if(scores[i]<0||scores[i]>100){

                    continue;

                }

                newScores[j]=scores[i];

                j++;

            }

            return newScores;

        }

        

    }