系统提示i cannot be resolved to a variable的错误,但我打出来的程序跟答案一样啊

来源:7-1 编程练习

qq_爱美女_0

2016-05-18 16:46

package mukewang;
import java.util.Arrays;
public class HelloWorld {
    public static void main(String[] args) {
            int[] scores = {89,-23,64,91,779,52,73};
            System.out.println("本次考试成绩前三名为:");       
            HelloWorld hello = new HelloWorld

      hello.showA(scores);
        }   
        //定义方法完成成绩排序并输出前三名的功能
        public void showA(int[] scores){
            Arrays.sort(scores);
            int num = 0;
            for(int i = scores.length-1;i >= 0 && num < 3;i--);
            if (scores[i] > 100 || scores[i] < 0){
              continue;
        }
        num++;
        if(num > 3){
            break;
        }
        System.out.println(scores[i]);

}
}

http://img.mukewang.com/573c2bad00010eed07570588.jpg();
     

写回答 关注

2回答

  • 上帝的男孩
    2016-05-18 17:13:36
    已采纳

    你的代码错的地方太多了 ,有几处很明显的错误  HelloWorld hello = new HelloWorld();

    正确的用该是这样的 :

    import java.util.Arrays;
    public class HelloWorld {
        public static void main(String[] args) {
            int[] scores = {89,-23,64,91,779,52,73};
            System.out.println("本次考试成绩前三名为:");       
            HelloWorld hello = new HelloWorld();
          	hello.showA(scores);
        }   
        //定义方法完成成绩排序并输出前三名的功能
        public void showA(int[] scores){
            Arrays.sort(scores);
            int num = 0;
            for(int i = scores.length-1;i >= 0 && num < 3;i--){
                if (scores[i] > 100 || scores[i] < 0){
                    continue;
                }
                num++;
    	    System.out.println(scores[i]);
                if(num > 3){
                    break;
                }
            }
        }
    }


  • qq_爱美女_0
    2016-05-18 16:56:02

    知道错在哪里了   打错符号了   检查起来真累心……

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

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

1165172 学习 · 17581 问题

查看课程

相似问题