我写了那种代码
int[] count = new int[10];
int i = count.length;
int position = -1;
int num = kb.nextInt();
while(i > 0)
{
if(count[i] == num)
{
position = i;
break;
}
i--;
}
但我得到了java.lang.ArrayIndexOutOfBoundsException
错误
目的是找到用户在数组中选择的最后一次出现的数字。