#include<stdio.h>
main()
{
int a,b,c,temp;
printf(“please enter three number:”);
scanf(“%d%d%d”,&a,&b,&c);
if(a<b)
{
temp=a;
a=b;
b=temp;
};//a>=b
if(b<c)
{
temp=c;
c=b;//temp>=c
if(a>temp) b=temp;
else
{
b=a;
a=temp;
};
};
printf(“%d %d %d”,a,b,c);
return 0;
}
网友评论