慕粉0938392820
2016-12-27 13:08
#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);
}
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);
}
第一个for循环应该加“{}”
C语言入门
926020 学习 · 20793 问题
相似问题