c语言用if比较四个数排序
时间: 2024-05-05 21:17:04 浏览: 80
c语言排序算法的比较
5星 · 资源好评率100%
以下是用C语言通过if比较四个数进行排序的示例代码:
```c
#include <stdio.h>
int main()
{
int a, b, c, d;
printf("请输入四个整数:\n");
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;
}
```
该程序通过六次if语句进行排序,将四个数从小到大排列,并输出结果。
阅读全文