不知道哪里错了,求教大佬们
在for循环中,数组的索引是0开始的,你的i<scores.length-1;不然会数据越界。
main中数组定义有误:int[] scores=new int[5];
方法定义中的形参有误 public void a(a[] scores);
for循环中数组的索引是从0开始的,i>=0;