To create a vector, write vector<type> name; where type is the data to store. For example, vector<int> scores; creates an empty vector of integers. The angle brackets tell C++ what type of elements your vector holds.
Every element must be the same type, just like arrays. An empty vector starts with size zero. Add elements later with push_back, or initialize with values right away using different syntax you'll look at next.