Just like the while and the do-while loop, a for loop allows you to repeat your codes forthe desired number of times.In this program, you will count the number of vowels and consonants in a user enteredstring. You need to have two counters to keep count all of vowels and consonants. Samecounter is used for both uppercase as well as lowercase letters.To complete this program:• Using a suitable message, get a string from the user. Note that the stringmay contain more than one word hence use getline.• Inside a for loop, test each character by processing each character of thestring one at a time.o Think about initialization, termination and update conditions forthis loop.• Instead of checking for each consonant separately (there are too many),first check if it an alphabet.Using nested if-else block, check if it is a vowel, and updateappropriate counter.If it not a vowel, it must be consonant. Update the appropriatecounter.• Inform the user about the two counts.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here