This program illustrates the use of the STL count() algorithm to count the number of times an integer value appears in a vector of integers. Press Enter to continue ... Here are the contents of v: 1 2 2 2 3 2 4 2 5 2 Press Enter to continue ... The number of times the value 2 appears in v is 6. Press Enter to continue ... The number of times the value 7 appears in v is 0. Press Enter to continue ...