Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7 at HelloWorld.printScore(HelloWorld.java:30) at HelloWorld.main(HelloWorld.java:12
数组索引越界异常,你的for循环写错了,
for (int i = scores.length - 1; i >= 0; i--)
注意是i--,如果写成i++就会出现这种问题。