#include #include #include using namespace std; int main() { vector intVector; // Store numbers 1, 2, 3, 4, 5, ..., 10 to the vector for (int i = 0; i < 10; i++) intVector.push_back(i + 1); // Display the numbers in the vector cout << "Numbers in the vector: "; for (int i = 0; i < intVector.size(); i++) cout << intVector[i] << " "; vector stringVector; // Store strings into the vector stringVector.push_back("Dallas"); stringVector.push_back("Houston"); stringVector.push_back("Austin"); stringVector.push_back("Norman"); // Display the string in the vector cout << "\nStrings in the string vector: "; for (int i = 0; i < stringVector.size(); i++) cout << stringVector[i] << " "; stringVector.pop_back(); // Remove the last element vector v2; v2.swap(stringVector); v2[0] = "Atlanta"; // Redisplay the string in the vector cout << "\nStrings in the vector v2: "; for (int i = 0; i < v2.size(); i++) cout << v2.at(i) << " "; return 0; }