int i,j,a;
for(i=8;i>=0;i--)
{
for(j=0;j<=i;j++)
if(score[j]>score[j+1])
a=score[j];
}
else
a=score[j+1];
请问我不能用数组遍历求最大最小值吗 那个a的值只能赋一次吗 不能随着循环而变化吗
只要你能做出来,什么方法都可以的。你数组遍历求最大最小值当然可以。