用C语言输入4个整数,要求按由小到大的顺序输出
时间: 2023-09-07 09:15:05 浏览: 92
好的,以下是用C语言实现的代码:
```c
#include <stdio.h>
int main() {
int a, b, c, d;
int temp;
printf("请输入4个整数:");
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;
}
```
以上代码使用了冒泡排序的思想,从小到大排序。首先将第一个数与后面的数依次比较,将较小的数放在前面,然后再将第二个数与后面的数比较,以此类推,最终得到由小到大排序的结果。
阅读全文