This program illustrates the use of the STL count_if() algorithm to count the number of integer values in a vector of integers that are divisible by 3. Press Enter to continue ... Here are the contents of v1: 1 2 3 4 5 6 7 8 9 10 11 12 Press Enter to continue ... The number of values in v1 that are divisible by 3 is 4. Press Enter to continue ... Here are the contents of v2: 10 20 40 50 70 80 100 110 130 140 Press Enter to continue ... The number of values in v1 that are divisible by 3 is 0. Press Enter to continue ...