Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void Check(char input)
- {
- if (input == 'a'
- || input == 'e'
- || input == 'i'
- || input == 'o'
- || input == 'u')
- {
- Console.WriteLine("Input is a vowel");
- }
- else
- {
- Console.WriteLine("Input is a consonant");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment