/* Examples of class vector, iterators, and algorithms */ #include #include //to get the vector class (a vector is a type of array) #include //to use the sort() function #include //use for exceptions using namespace std; int main(){ //instantiate a vector of integers vector vector1; cout<<"vector1.size() = "<< vector1.size()<