vector 원소 삽입 삭제vector의 맨 뒤에 원소를 삽입할 때는 push_back을 사용합니다. 맨 마지막 원소를 삭제할 때는 pop_back을 사용합니다. 그럼 맨 앞이나 혹은 가운데 삽입할 때는 어떻게 해야 할까요?#include #include #include using namespace std;int main() { vector sentence{"how", "is", "programming"}; //First try sentence[1] = "fun"; for (auto word : sentence) cout sentence2{ "how", "is", "programming" }; sentence.at(3) = sentence2.at(2); //인덱스 연산자 [] 대신 at을 쓰면 ind..