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

麻烦大家,帮我看看哪错了。

package HelloWorld;

import java.util.Arrays;

public class HelloWorld {

        public static void main(String[] args) {

            HelloWorld hello=new HelloWorld();

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

            System.out.println("考试成绩的前三名为:");

            hellow.top(scores);

        }

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

      public void top(int scores[]){

     Arrays.sort(scores);

      for(int i=0;i<3;i++){

     if(socres[i]>100){

     continue;

     }

      }

        System.out.println(scores);  

        

        }

提问者:weibo_Harry伦_0 2017-03-18 09:21

个回答

  • qq_15上位机乔月旺_03850557
    2017-03-24 19:38:38

    1:首先,第二行代码,有拼音分号,你的改了。

    2:其次是 : hellow.top(scores); 拼写错误;

    3  : 还有是:  if(socres[i]>100){ ; 拼写错误

    4:  还有是:最后一个大括号多余去掉。

    就算改正着些,你的这结果也不对的呢,你的循环有问题,打印的是一个地址值


  • qq_熏染的坚强_1
    2017-03-18 11:16:11

     hellow.top(scores);  中hello打错了吧