#include <stdio.h>
int main()//三个数比大小,从大到小
{
int a = 0;
int b = 0;
int c = 0;
scanf("%d %d %d", &a, &b, &c);//输入数字时,两两要有空格为间隙
if (a < b)
{
int tem = a;
a = b;
b = tem;
}
if (a< c)
{
int tem = a;
a = c;
c = tem;
}
if (b < c)
{
int tem = b;
b = c;
c = tem;
}
printf("%d %d %d", a, b, c);
return 0;
}
c语言作业之三个数比大小,从大到小
原创
©著作权归作者所有:来自51CTO博客作者笙歌易雨的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:c语言作业之猜数字游戏
下一篇:c语言之Swap函数的初次运用
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章