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

求大神解答这样写哪里错了

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

提问者:普罗米修斯355205 2014-11-15 15:55

个回答

  • HappyHacking
    2014-11-16 14:29:02

    除了方法声明有问题之外,请问题主,show方法里面的rank是哪里来的

  • wenzhilanyu
    2014-11-16 12:33:27

     public int void show()改为public static int show()

  • youngjoys
    2014-11-15 18:46:05

    http://shylx123.blog.51cto.com/2081576/538561

  • youngjoys
    2014-11-15 18:44:12

     public int void show()

    这是谁教你的。。。。