c++ string类倒序输出字符串
时间: 2023-07-19 08:28:11 浏览: 306
C语言实现字符串倒序输出
5星 · 资源好评率100%
可以使用C++ STL中的reverse函数来倒序输出字符串。例如:
```c++
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main() {
string str = "hello world";
reverse(str.begin(), str.end());
cout << str << endl;
return 0;
}
```
输出结果为: "dlrow olleh"。
阅读全文