利用for循环输出一个vector<vector<string>>类型的变量
时间: 2023-08-10 18:05:18 浏览: 72
ppt 用for语句实现循环变量
可以使用如下代码来利用for循环输出一个`vector<vector<string>>`类型的变量:
```c++
#include <iostream>
#include <vector>
#include <string>
int main() {
// 定义一个vector<vector<string>>类型的变量
std::vector<std::vector<std::string>> vec = {{"hello", "world"}, {"how", "are", "you"}};
// 使用for循环遍历vec中的每个元素
for (auto row : vec) {
// 使用for循环遍历每个子vector中的每个元素
for (auto element : row) {
std::cout << element << " ";
}
std::cout << std::endl;
}
return 0;
}
```
输出结果为:
```
hello world
how are you
```
阅读全文