慕标5051914
2020-12-30 14:26
void sort(int score[])
{
int i,j;
for(i=N-2;i>=0;i--)
{
for(j=0;j<=i;j++)
{
if(score[j]<score[j+1])
{
int temp;
temp = score[j];
score[j] = score[j+1];
score[j+1]=temp;
}
}
}
printScore(score);
}
跟冒泡排序差不多意思
C语言入门
926020 学习 · 20793 问题
相似问题