This program illustrates the use of the STL search_n() algorithm (default version) to find instances of a consecutive sequence of identical values in a vector of integers. Press Enter to continue ... Here are the contents of the vector: 1 2 9 9 9 9 4 5 6 7 9 9 9 10 11 Press Enter to continue ... The first instance of three consecutive 9's begins at location 3. Press Enter to continue ... The next instance of three consecutive 9's begins at location 4. Press Enter to continue ... The next instance of three consecutive 9's begins at location 11. Press Enter to continue ... No further instance of three consecutive 9's was found in the vector. Press Enter to continue ...