C语言用if比较四个数排序,并且计算比较次数
时间: 2023-10-29 10:58:53 浏览: 67
以下是使用if语句比较四个数排序的C程序,同时计算比较次数:
```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 (a > c) {
int temp = a;
a = c;
c = temp;
count++;
}
if (a > d) {
int temp = a;
a = d;
d = temp;
count++;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
count++;
}
if (b > d) {
int temp = b;
b = d;
d = temp;
count++;
}
if (c > d) {
int temp = c;
c = d;
d = temp;
count++;
}
printf("排序后的结果为:%d %d %d %d\n", a, b, c, d);
printf("比较次数为:%d\n", count);
return 0;
}
```
在程序中,我们使用了多个if语句来比较四个数的大小并进行排序。在每次比较中,如果需要交换两个数的位置,我们就记录一次比较次数。最后输出排序后的结果和比较次数。
阅读全文