感觉没有错啊
#include <stdio.h>
int main()
{
int score[10]={67,98,75,63,82,79,81,91,66,84};
int i,j;
int temp;
for(i=0;i<10;i++)
for(j=0;j<10;j++)
{
if(score[j]<score[j+1])
{
temp=score[j];
score[j]=score[j+1];
score[j+1]=temp;
}
}
for(i=0;i<10;i++)
{
printf("%d\n",score[i]);
}
return(0);
}