c++翻转string
时间: 2023-06-15 09:05:12 浏览: 102
c++笔试题汇总
4星 · 用户满意度95%
可以使用C++中的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;
}
```
这里我们使用了algorithm头文件中的reverse函数,将字符串str的起始位置和结束位置作为参数传入即可完成翻转。输出结果为"dlrow olleh"。
阅读全文