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

为什么运行失败啊

import java.ntil.Arrays;

public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

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

        System.out.println("前三名的成绩是:");

        HelloWorld hello = new helloWorld();

        hello.three(socres);

        

    }

    

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

    public void three (int []socres){

    Arrays.sort(scores);

    int first = 0;

    for(int i = socres.length - 1 ; i >= 0&&first<=3;i--)

    {

    if (scores[i]<0||socres[i]>100)

    continue;

    first++;

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

    

    }

  }    

       

}



提问者:qq_慕运维7174717 2019-09-14 15:36

个回答

  • Code小白k1
    2019-09-14 16:46:29
    已采纳

    import java.ntil.Arrays;//ntil 改为 util

    HelloWorld hello = new helloWorld();//helloWorld()改为HelloWorld()


    scores  这个数组名 有好几个拼错了 

  • weixin_慕仔2595270
    2019-10-06 23:05:41

    first应该小于3吧。。。?