C语言输入四个整数两两比较从小到大排序输出,并统计比较次数,
时间: 2024-05-07 10:16:03 浏览: 89
输入4个整数,要求按由小到大的顺序输出。
以下是一个示例程序:
```c
#include <stdio.h>
int main() {
int a, b, c, d;
int count = 0;
printf("请输入四个整数:\n");
scanf("%d%d%d%d", &a, &b, &c, &d);
if (a > b) {
int temp = a;
a = b;
b = temp;
count++;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
count++;
}
if (c > d) {
int temp = c;
c = d;
d = temp;
count++;
}
if (a > b) {
int temp = a;
a = b;
b = temp;
count++;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
count++;
}
if (a > b) {
int temp = a;
a = b;
b = temp;
count++;
}
printf("排序后的结果为:%d %d %d %d\n", a, b, c, d);
printf("比较次数为:%d\n", count);
return 0;
}
```
该程序首先读入四个整数,然后通过多次两两比较和交换来实现排序。其中,count 变量记录比较次数。最后输出排序后的结果和比较次数。
阅读全文