This program illustrates the use of the STL replace_if() algorithm to replace all copies of a given value in a vector of integers that satisfy a given predicate with another value. Press Enter to continue ... Here are the values in the vector: 1 2 2 3 4 5 2 6 Press Enter to continue ... Now we replace all values divisble by 3 with 123. Press Enter to continue ... Here are the revised contents of the vector: 1 2 2 123 4 5 2 123 Press Enter to continue ...