# include & ltstring.h & gt
int main()
{
void swap(char *,char *);
char s 1【31】,S2【31】,S3【31】;
scanf(“% s % s % s“,s1,s2,S3);
if(strcmp(s 1,s2)》0)swap(s 1,S2);
if(strcmp(s 1,s3)》0)swap(s 1,S3);
if(strcmp(S2,S3)& gt;0)交換(s2,S3);
printf(“% s % s % s \ n“,s1,s2,S3);
返回0;
}
void交換(char *p1,char *p2)
{
char p【31】;
strcpy(p,p 1);strcpy(p 1,p2);strcpy(p2,p);
}