Project: Favorite Cities Vector

Make a vector<string> of three cities. Print each one with a loop.

Project: Favorite Cities Vector

Make a vector<string> of three cities. Print each one with a loop.

C++
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}