This program illustrates the use of the STL accumulate() algorithm (default version) from to find the sum of integer values stored in a vector. Press Enter to continue ... Here are the integer values in the vector: 2 4 6 8 10 Press Enter to continue ... The sum of these values is 30. Press Enter to continue ... The sum of the middle three values and an intial value of -5 is 13. Press Enter to continue ... The sum of the values in an empty range, with an intial value of 22, is 22. Press Enter to continue ...