c++字符串倒序输出
时间: 2023-08-08 21:08:56 浏览: 358
c语言实现倒序输出
5星 · 资源好评率100%
可以使用C++标准库中的`reverse`函数来实现字符串倒序输出。具体代码如下:
```c++
#include <iostream>
#include <string>
#include <algorithm>
int main() {
std::string s = "hello world";
std::reverse(s.begin(), s.end());
std::cout << s << std::endl; // 输出 "dlrow olleh"
return 0;
}
```
上面的代码中,`std::reverse`函数接收两个迭代器参数,表示要反转的区间。在本例中,我们传递了整个字符串`s`的迭代器范围,即`s.begin()`和`s.end()`,这样就可以将整个字符串倒序输出了。
阅读全文