c++不用swap函数和sort函数以及冒泡,只用ifelse语句写代码将输入的三个整数从小到大输出
时间: 2023-03-21 17:04:03 浏览: 82
C#编写任意输入三个整数,从小到大输出
5星 · 资源好评率100%
可以使用以下的代码实现将输入的三个整数从小到大输出:
```
#include <stdio.h>
int main() {
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (a > c) {
int temp = a;
a = c;
c = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
printf("%d %d %d", a, b, c);
return 0;
}
```
代码思路:先输入三个整数,然后使用 if-else 语句进行判断,将三个数从小到大排序。
阅读全文