This program illustrates the use of the STL adjacent_find() algorithm (extended version) to find adjacent pairs of integers that are both divisible by 5 in a vector of integers. Press Enter to continue ... Here are the values in the vector: 10 21 33 40 50 60 72 77 80 95 101 Press Enter to continue ... The first value of the first matching pair is 40. Press Enter to continue ... The first value of the next matching pair is 50. Press Enter to continue ... The first value of the next matching pair is 80. Press Enter to continue ... There are no, or no more, matching pairs. Press Enter to continue ...