关于最大值与最小值
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的值只能赋一次吗 不能随着循环而变化吗
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的值只能赋一次吗 不能随着循环而变化吗
2019-08-03
举报