This program illustrates the use of the STL reverse() algorithm to reverse the order of all, or just some, of the values in a vector of integers. Press Enter to continue ... Here are the contents of the vector: 1 2 3 4 5 6 7 8 9 10 Press Enter to continue ... Now we reverse the order of all values in the vector. Press Enter to continue ... Here are the revised contents of the vector: 10 9 8 7 6 5 4 3 2 1 Press Enter to continue ... Now we reverse the order of all values in the vector, except the end values. Press Enter to continue ... Here are the revised contents of the vector: 10 2 3 4 5 6 7 8 9 1 Press Enter to continue ...