Write a loop that allows the user to enter a string, and that prints all the vowels that occurs in the string along with the number of vowels (count). Allow the user to enter a string and display the list of vowels found in the string and a count or total of the number of vowels. Reminder that in order to access each single element in the string you must use the string library functions like .at() and the operator [ ]. Other functions that may be useful in completing the assignment are also getline() and length() where the getline() function is a standard library function that is used to read a string or a line from an input stream while the length( ) function returns the length of the string.