c语言输入四个数从小到大输出
时间: 2023-08-24 09:37:04 浏览: 329
C语言实验-输入4个整数,要求按由小到大(或由大到小)顺序输出。
5星 · 资源好评率100%
好的,以下是用C语言编写的实现输入四个数从小到大输出的程序:
```c
#include <stdio.h>
int main() {
int a, b, c, d, temp;
printf("请输入四个数:\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;
}
```
这个程序中,我们使用了冒泡排序的思想,将输入的四个数从小到大排序,并输出结果。
阅读全文