输入4个整数,从小到大排序c语言代码
时间: 2024-05-03 19:22:58 浏览: 106
下面是一种简单的C语言代码实现:
```
#include <stdio.h>
int main() {
int a, b, c, d;
scanf("%d %d %d %d", &a, &b, &c, &d);
int temp;
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;
}
```
首先,定义4个整数变量a、b、c、d,并通过scanf()函数从标准输入中读入4个整数。
接着,使用冒泡排序的思想,依次比较相邻的两个数,将大的数往后移动。具体实现过程中,使用了6个if语句和一个temp变量来完成排序。
最后,使用printf()函数将排序后的结果输出到标准输出中。
阅读全文