将字符串数组逆序输出
时间: 2024-06-14 19:06:00 浏览: 128
字符串逆序输出
5星 · 资源好评率100%
以下是将字符串数组逆序输出的示例代码:
```cpp
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main() {
vector<string> arr = {"abc", "def", "ghi", "jkl"};
reverse(arr.begin(), arr.end());
for (string s : arr) {
cout << s << " ";
}
return 0;
}
```
输出结果为:"jkl ghi def abc"
阅读全文