#include<stdio.h>
//输入三个数,按从大到小输出
int main()
{
int a=0, b=0, c=0;
printf("请输入三个数:\n");
scanf("%d%d%d", &a, &b, &c);
if (a<b)//先判断a<b,因为a>b是想要的,所以比较a<b
{
int temp = 0;
temp = a;
a = b;
b = temp;
}
if (a < c)//同理再判断a<c,通过比较a<b和a<c得出a,b,c中最大值并且赋值给a
{
int temp = 0;
temp = a;
a = c;
c = temp;
}
if (b< c)//如果b>c则合理
{
int temp = 0;
temp = b;
b = c;
c = temp;
}
printf("%d %d %d\n",a,b,c);
return 0;
}
实现过程难点:主要是理清楚比较大小的逻辑,例如当a>b是合理的就不用比较,这层想不到。
运行结果: