0

用c语言将三个数字从大到小排列

 1 year ago
source link: https://blog.51cto.com/u_15922371/5982222
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

用c语言将三个数字从大到小排列

精选 原创

海绵饱饱q 2022-12-31 20:09:56 博主文章分类:C语言 ©著作权

文章标签 #include 文章分类 C/C++ 编程语言 技术人为什么要写博客? 阅读数235

#include<stdio.h>
int main()
{
int a=0;
int b=0;
int c=0;
scanf("%d%d%d",&a,&b,&c);
//先确定最大值a,然后比较b和c的大小
if(a<b)
{
int tmp=a;
a=b;
b=tmp;
}
if(a<c)
{
int tmp=a;
a=c;
c=tmp;
}
if(b<c)
{
int tmp=b;
b=c;
c=tmp;
}
printf("a=%d b=%d c=%d\n",a,b,c);
return 0;
}
  • 收藏
  • 评论
  • 分享
  • 举报

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK