源代码已经更正修改了,但还是报错
报错提示:
考试成绩的前三名为:Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7 at HelloWorld.getBest3(HelloWorld.java:19) at HelloWorld.main(HelloWorld.java:9)
应该是你的i=scores.length-1这里错了,写成i=scores.length了
556