This program illustrates the use of the STL sort algorithm, together with a built-in STL function object, to sort values in descending order. Press Enter to continue ... Here are the original contents of a vector: 17 12 14 19 23 15 61 20 81 11 Press Enter to continue ... And here they are sorted in descending order: 81 61 23 20 19 17 15 14 12 11 Press Enter to continue ...