遍历加比较
main()
{
int j;
char a[2000],temp;
gets(a);
temp=a[0];
for(j=1;a[j]!='\0';j++) //扫描一次完成~!
if (a[j]>temp)
temp=s[j];
printf("%c",temp );
printf("\n");
}
遍历加比较
main()
{
int i,j,temp;
string s;
for(i=0;i<10;i++)
scanf ("%d,",&s);
for(j=0;j<=s.length;j++)
{ for (i=0;i
{ temp=s[i];
s[i]=s[i+1];
s[i+1]=temp;}
}
printf("%5d,",s[0] );
printf("\n");
}
用冒泡法排序