You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
214 B

#include <bits/stdc++.h>
using namespace std;
int main() {
vector<int> v = {1, 2, 3, 4, 5};
v.insert(v.begin() + 2, 9);
for (int i = 0; i < v.size(); i++) cout << v[i] << " ";
return 0;
}