Assignment Example

This is assignment you will take a string from the user and then count the number of each vowel that is in the String.(it should be done in a method with the vowel as a parameter). Sample Output
    
	Give me a sentence:    
	How Now Brown Cow sat on a sink       

	There were 2 a's    
	There were 0 e's     
	There were 1 i's    
	There were 5 o's    
	There were 0 u's    
	There were 0 y's 
	Because sometimes Y is a vowel


This assignment is an example you don't have to turn it in.
Here is the answer