刚开始学习STL,这是第一个问题:
vector<int> vec1;
for(int i = 1; i <= 100; i++)
{
vec1.push_back(i);
cout << vec1[i] << endl;
}
如您所见,我想将变量i推回向量vec1但输出为:
5832900
-319008141
0
ETC...
Process returned 0 (0x0) execution time : 0.210 s
Press any key to continue.
感谢一切。