This program illustrates the use of the STL binary_search() algorithm (default version) to determine whether a given integer is one of the values in a vector of integers that are sorted in ascending order. Press Enter to continue ... Here are the values in the vector: 1 2 3 4 5 6 7 9 10 Press Enter to continue ... The value 3 was found. Press Enter to continue ... The value 8 was not found. Press Enter to continue ...