#include < vector>
// do this using namespace std; // or std::vector<...>
vector<int> numbers; vector<string> words(10); // declare a vector of 10 strings vector<float> values(15, 1.0); // declare a vector with 15 floats initialized to 1.0
vector <int> myNumbers({1,2,3,4,5});
vector <int> myNumbers = {1,2,3,4,5} ;