编译器显示语法没错,就是运行不了

来源:7-1 编程练习

qq_繁华如三千东流水_0

2015-08-27 12:14

package com.text2;

import java.util.Arrays;


public class HelloWorld {


public static void main(String[] args) {

// TODO Auto-generated method stub

        HelloWorld hello=new HelloWorld();

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

        int [] nums=new int [3];

        nums=hello.topThree(scores);

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

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

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

        }

}

public int [] topThree(int [] scores){

Arrays.sort(scores);

int [] nums=new int [3];

int i=0;

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

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

continue;

}

nums[i]=scores[j];

i++;

if(i>3)

break;

}

return nums;

}


}


写回答 关注

1回答

  • qq_繁华如三千东流水_0
    2015-08-27 12:26:37

    越界了,int [] nums=new int [3];改为int [] nums=new int [scores.length];

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

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

1165172 学习 · 17581 问题

查看课程

相似问题