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

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();

       hello.top.(scores);

 }

    

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

    public void top(int[] scores){

      Arrays.sort(scores);

      int j=0;

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

     if(scores[i]>=0 && scores[i]<=100 &&j<3)

      System.out.println(scores[i]);

      j++;

      }

    }

}

老是显示hello.top.(scores);这行有问题,请大家帮忙看看,多谢了!

正在回答

1 回答

调用方法的时候是用对象.方法(参数)就可以了,你方法和括号之间不应该有点的,所以你把点方法和括号之间的点去掉就可以了

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

LITst526 提问者

刚看出来,多谢了!
2014-09-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信