字符串逆序hello world
时间: 2023-12-14 21:04:30 浏览: 85
字符串逆序-使用C#实现的字符串逆序.zip
以下是使用C++中的reverse()函数将字符串逆序的例子:
```cpp
#include <algorithm>
#include <iostream>
#include <string>
using namespace std;
int main() {
string orderstr = "hello world";
cout << "正序字符串:" << orderstr << endl;
reverse(orderstr.begin(), orderstr.end());
cout << "逆序字符串:" << orderstr << endl;
}
```
输出结果为:
```
正序字符串:hello world
逆序字符串:dlrow olleh
```
阅读全文