用c语言编写一个输入三个整数可以从大到小排序的源代码
时间: 2023-03-31 20:03:12 浏览: 119
c代码-C语言三个数从小到大排序/输出: 任意输入 3 个整数,编程实现对这 3 个整数由小到大进行排序。 冒泡排序的动画 https://haokan.baidu.com/v?vid=8080732080990475789&pd=bjh&fr=bjhauthor&type=video
您好,以下是用 C 语言编写一个输入三个整数可以从大到小排序的源代码:
```
#include <stdio.h>
int main() {
int a, b, c, temp;
printf("请输入三个整数:\n");
scanf("%d%d%d", &a, &b, &c);
if (a < b) {
temp = a;
a = b;
b = temp;
}
if (a < c) {
temp = a;
a = c;
c = temp;
}
if (b < c) {
temp = b;
b = c;
c = temp;
}
printf("从大到小排序为:%d %d %d\n", a, b, c);
return ;
}
```
希望能够帮到您!
阅读全文