#include #include #include #include using namespace std; const vector mcquays = { "stephen", "michael", "bryan", "derek", }; int main() { // original with uint // original with iterator vector nums = { 1, 2, 3, 4, 5 }; // fix so nums is 0, 1, 2 ... map age_for_mcquay = { {"stephen", 31}, {"michael", 29}, {"bryan", 27}, {"derek", 21}, }; // map example: }