第一季最后一道

来源:7-1 编程练习

greenhandc

2015-12-07 18:23

import java.util.Arrays;

import java.util.Scanner;

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.showTop3(scores);

    }

        

    public void showTop3(int[]scores){

        Arrays.sort(scores);

        int num=0;

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

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

               continue;

           }

           num++;

           if(num>3){

              break; 

           }

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

            

        }

        

    

    }

这个代码在网页上是可以输出结果的 但是为什么在myeclipse里面一直弹错??


Exception in thread "main" java.lang.Error: Unresolved compilation problem: 


at chuan.HelloWorld.main(HelloWorld.java:9)


写回答 关注

1回答

  • 和C说88
    2015-12-07 19:34:11
    已采纳

    我在idea中可以运行,上面的程序末尾少个}。

    greenh...

    非常感谢!

    2015-12-07 20:38:00

    共 1 条回复 >

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165600 学习 · 17587 问题

查看课程

相似问题