我正在编写一个程序,它将接收二维向量的值并为它们提供输出。但是,我遇到了运行时错误。
#include <bits/stdc++.h>
using namespace std;
int main() {
// your code goes here
vector<vector<int> > vec;
vec[0].push_back(1);
vec[0].push_back(2);
vec[0].push_back(13);
for(int i=0;i<3;i++)
{
cout<<vec[0][i]<<" ";
}
return 0;
}