This program illustrates the use of the STL find_if() algorithm to find an integer divisible by 3 in a vector of integers. Press Enter to continue ... Here are the contents of v: 1 2 4 5 7 12 9 8 3 6 Press Enter to continue ... The first value in the sequence divisible by 3 is 12, which was found at location 6. Press Enter to continue ...