C++中vector如何输出
时间: 2023-04-02 20:03:52 浏览: 355
可以使用迭代器遍历 vector 中的元素,然后逐个输出。示例代码如下:
```
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<int> vec = {1, 2, 3, 4, 5};
for (auto it = vec.begin(); it != vec.end(); ++it) {
cout << *it << " ";
}
cout << endl;
return ;
}
```
输出结果为:1 2 3 4 5
阅读全文