#include "stdio.h"
void main()
{
int a,b,c,d,temp;
scanf("%d,%d,%d,%d",&a,&b,&c,&d);
if(a<b)
{temp=a,a=b,b=temp;}
else if(a<c)
{temp=a,a=c,c=temp;}
else if(a<d)
{temp=a,a=d,d=temp;}
else if(b<c)
{temp=b,b=c,c=temp;}
else if(b<d)
{temp=b,b=d,d=temp;}
else if(c<d);
{temp=c,c=d,d=temp;}
printf("%d,%d,%d,%d",a,b,c,d);
} 哪里出问题了?
|