This program illustrates the use of the STL remove_if() algorithm to remove all values that are divisible by 3 from a vector of integers. Press Enter to continue ... Here are the sixteen values in the vector: 1 2 2 3 4 5 2 3 6 7 2 8 3 9 10 2 Size of vector to start: 16 Capacity of vector to start: 16 Press Enter to continue ... Now we remove all 5 values that are divisble by 3. Press Enter to continue ... Size of vector immediately after the call to remove_if: 16 Capacity of vector immediately after the call to remove_if: 16 Contents of vector immediately after the call to remove_if: 1 2 2 4 5 2 7 2 8 10 2 8 3 9 10 2 Press Enter to continue ... Now we erase the last five values of the vector. Press Enter to continue ... Size of vector immediately after the call to erase: 11 Capacity of vector immediately after the call to erase: 16 Contents of vector immediately after the call to erase: 1 2 2 4 5 2 7 2 8 10 2 Press Enter to continue ...