This program illustrates the use of the STL replace() algorithm to replace all copies of a given value from a vector of integers with another value. Press Enter to continue ... Here are the values in the vector: 1 2 2 3 4 5 2 3 Press Enter to continue ... Now we replace all copies of the value 2 with 222. Press Enter to continue ... Here are the revised contents of the vector: 1 222 222 3 4 5 222 3 Press Enter to continue ...