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

在定义方法是eclipse报错

package score;


import java.util.Arrays;


public class chengji {


public static void main(String[] args) {


        int[] scores={89,-23,64,91,119,52,52,73};

        chengji hello=new chengji();

        hello.a(scores);

        

        public static void a(int[] scores)

        Arrays.sort(scores);

   int num=0;

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

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

    {

    continue;

    }http://img.mukewang.com/577f7ca40001390f04160146.jpg

    if(num>3)

    {break;}

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


   }

   

}


}


提问者:北极光3605134 2016-07-08 18:13

个回答

  • 俗人xx
    2016-07-08 18:48:50

    你在hello.a(scores);

    后面加个大括号把main函数括起来  ‘}’