This program illustrates the use of several STL algorithms with vector objects. From we show max, min, max_element, min_element, count, and sort. From we show accumulate. Press Enter to continue ... Here are the values in the vector v: 1 8 2 8 12 3 -1 8 4 8 5 Press Enter to continue ... Now we compare the first and last values. Maximum of first and last values = 5 Minimum of first and last values = 1 Press Enter to continue ... Here are the maximum and minimum values. Maximum value in the vector = 12 Minimum value in the vector = -1 Press Enter to continue ... Here is the number of times the value 8 appears: 4 Press Enter to continue ... Here are the values sorted in ascending order: -1 1 2 3 4 5 8 8 8 8 12 Press Enter to continue ... Finally, here is the sum of all the values: 58 Press Enter to continue ...