单选题 难度 2
删掉一个,后面的会补上来。
下面代码的输出是( )。 vector<int> v = {1,2,3,4,5}; v.erase(v.begin() + 1); cout << v.size() << " "; for (int x : v) cout << x;