I need this in PSEUDOCODE:
Write a method, called CheckLetter. The method receives a letter as a parameter and returns whether the letter is a lowercase vowel (a, e, i, o, u) or not. Sample outputs are: The entered letter is: a, a is a vowel. The entered letter is: b, b is not a vowel.
step1: first read the character from the user
step2:check if the character is equal to a or e or i or o or u if any condition is satisfied goto step3 else goto ste4
step3:print character is a vowle
step4:print character is not a vowel
step5:end the program
#sample code in python
Get Answers For Free
Most questions answered within 1 hours.