输入三个整数,按由小到大的顺序输出,然后将程序改为:输入三个字符串,按由小到大的顺序输出。以C++形式
时间: 2024-12-29 16:32:22 浏览: 11
当然可以,以下是使用C++语言实现的两个程序:
1. 输入三个整数,按由小到大的顺序输出:
```cpp
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cout << "请输入三个整数: ";
cin >> a >> b >> c;
if (a > b) swap(a, b);
if (a > c) swap(a, c);
if (b > c) swap(b, c);
cout << "排序后的结果: " << a << " " << b << " " << c << endl;
return 0;
}
```
2. 输入三个字符串,按由小到大的顺序输出:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1, str2, str3;
cout << "请输入三个字符串: ";
cin >> str1 >> str2 >> str3;
if (str1 > str2) swap(str1, str2);
if (str1 > str3) swap(str1, str3);
if (str2 > str3) swap(str2, str3);
cout << "排序后的结果: " << str1 << " " << str2 << " " << str3 << endl;
return 0;
}
```
阅读全文