问答详情
源自: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};

        int imax=3;

        HelloWorld hello=new HelloWorld();

        hello.qiansanming(scores,imax);

        }

        

        

        

    }

    public int qiansanming(int[] scores,imax){

        //int[] scores;

        Array.sort(scores);

        //int score1;

        //int score2;

        //int scores3;

        int n=0;

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

            if (scores(i)>1&scores(i)<100&n<=imax){

                return scores[i];

                n++;

                }

            else{

                continue;

                }

            }

            //return scores(i);

            System.out.println(考试成绩的前三名为:scores[i]);

        }

        

    }

    

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

    

    

    


提问者:阿妍 2019-04-22 15:35

个回答

  • 慕虎6142037
    2019-04-22 17:28:37
    已采纳

    不行的,首先,java中数组取值应当用中括号;其次,return 语句之后的语句是不会执行的,因此你的方法即使语法没有问题,也只会返回一个数值。