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

求帮看看哪错了?

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

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

}

public int print(int []scores) {

    Arrays.sort(scores);

      int num=0;

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

           if (scores[i]>=0){

               if(scores<=100){

                   if(num<3){

                   num++;

               

           }}}else{

               continue;

           }

           }return  scores[i];

           }

       }


     


提问者:只为伊人心独醉 2015-09-30 14:03

个回答

  • 忘性最大的人
    2015-09-30 15:14:07
    已采纳

    跟楼上的感觉差不多,还需努力,错误有点多了,逻辑也比较混乱,看看别的同学的源码好好分析一下吧

  • 天启之魂
    2015-09-30 14:39:35

    可以的话 建议你下载个my eclipse 然后在里面写代码  先写出个能编译通过的 再问其他问题

  • 天启之魂
    2015-09-30 14:37:42

    想说根本看不懂你写的代码哈 

    错误太多了....根本看不出你想干嘛 

    比如  int scores[i]= hello.print(scores); 

    int 是定义一个变量  后面跟的应该是个变量名  你结果跟个数组的元素, 

    还带个角标i ,i又没有定义过.....看不下去了

  • 只为伊人心独醉
    2015-09-30 14:04:06

    运行结果error: ']' expected
    int scores[i]= hello.print(scores);
    ^
    error: illegal start of expression
    int scores[i]= hello.print(scores);
    ^
    2 errors