在主函数中输入的一个全为小写字母的字符串,编写一个子函数,能够对这个字符串进行从a-z的顺序排序。
时间: 2024-03-03 10:49:43 浏览: 294
java字符串数组进行大小排序的简单实现
好的,你可以使用以下的 C++ 代码实现:
```c++
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
string sortString(string s) {
sort(s.begin(), s.end()); // 使用sort函数排序
return s;
}
int main() {
string s;
cout << "请输入一个字符串(全为小写字母):";
cin >> s;
cout << "排序后的字符串为:" << sortString(s) << endl;
return 0;
}
```
这个程序中,我们定义了一个 `sortString` 函数,使用 `sort` 函数对字符串进行排序。在主函数中,我们首先输入一个字符串,然后调用 `sortString` 函数进行排序并输出结果。
阅读全文