编写程序,输入3 个整数,按照由小到大的顺序输出。 输入格式: 输入在一行中输入3个整数。 输出格式: 按从小到大的顺序输出。
时间: 2024-09-20 15:18:10 浏览: 47
python练习题 :用户任意输入10个整数到列表中,然后由大到小排列并输出。
在C++中,你可以使用`cin`从标准输入读取三个整数,然后使用`sort`函数对它们进行排序,再用`cout`输出结果。以下是一个简单的示例:
```cpp
#include <iostream>
#include <algorithm> // 包含sort函数
int main() {
int a, b, c;
// 输入三个整数
std::cout << "请输入三个整数: ";
std::cin >> a >> b >> c;
// 使用sort函数将它们从小到大排序
std::array<int, 3> numbers = {a, b, c};
std::sort(numbers.begin(), numbers.end());
// 输出排序后的结果
for (int num : numbers) {
std::cout << num << " ";
}
return 0;
}
```
运行这段代码后,它会提示你输入三个整数,然后按照升序显示这些数字。
阅读全文