请用c语言编写该程序:输入4个整数,编程用比较法由小到大顺序输出这4个数
时间: 2024-05-08 16:16:40 浏览: 103
C语言程序设计:第4章 C表达式与宏定义.pdf
```c
#include <stdio.h>
int main() {
int a, b, c, d, temp;
// 输入4个整数
printf("请输入4个整数:\n");
scanf("%d%d%d%d", &a, &b, &c, &d);
// 比较大小并排序
if (a > b) {
temp = a;
a = b;
b = temp;
}
if (a > c) {
temp = a;
a = c;
c = temp;
}
if (a > d) {
temp = a;
a = d;
d = temp;
}
if (b > c) {
temp = b;
b = c;
c = temp;
}
if (b > d) {
temp = b;
b = d;
d = temp;
}
if (c > d) {
temp = c;
c = d;
d = temp;
}
// 输出排序后的结果
printf("从小到大的顺序为:%d %d %d %d\n", a, b, c, d);
return 0;
}
```
阅读全文