输入4个整数,要求按从大到小的顺序输出c语言程序
时间: 2023-12-15 21:01:31 浏览: 117
```c
#include <stdio.h>
int main() {
int a, b, c, d;
printf("请输入4个整数:");
scanf("%d %d %d %d", &a, &b, &c, &d);
if (a < b) {
int temp = a;
a = b;
b = temp;
}
if (a < c) {
int temp = a;
a = c;
c = temp;
}
if (a < d) {
int temp = a;
a = d;
d = temp;
}
if (b < c) {
int temp = b;
b = c;
c = temp;
}
if (b < d) {
int temp = b;
b = d;
d = temp;
}
if (c < d) {
int temp = c;
c = d;
d = temp;
}
printf("从大到小的顺序输出:%d %d %d %d\n", a, b, c, d);
return 0;
}
```
这是一个简单的C语言程序,首先让用户输入4个整数,然后使用几种if语句对这4个数进行比较和排序,最终按照从大到小的顺序输出这4个数。
阅读全文