输入三个整数x,y,z,请把这三个数按由小到大的顺序输出 c++代码
时间: 2023-12-07 08:37:24 浏览: 98
Java输入三个整数并把他们由小到大输出(x,y,z)
5星 · 资源好评率100%
以下是输入三个整数并按从小到大排序输出的C++代码:
```c++
#include <iostream>
using namespace std;
int main()
{
int x, y, z;
cin >> x >> y >> z;
if (x > y)
{
int temp = x;
x = y;
y = temp;
}
if (x > z)
{
int temp = x;
x = z;
z = temp;
}
if (y > z)
{
int temp = y;
y = z;
z = temp;
}
cout << x << " " << y << " " << z << endl;
return 0;
}
```
阅读全文