This program illustrates the use of the STL sort() algorithm (default version) to sort a vector of integers into ascending order. Press Enter to continue ... Here are the original contents of the vector: 17 12 14 19 23 15 61 20 81 11 Press Enter to continue ... And here the sorted contents of the vector: 11 12 14 15 17 19 20 23 61 81 Press Enter to continue ...