Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void CheckWithSwitch(char input)
- {
- switch (input)
- {
- case 'a':
- case 'e':
- case 'i':
- case 'o':
- case 'u':
- {
- Console.WriteLine("Input is a vowel");
- break;
- }
- case 'y':
- {
- Console.WriteLine("Input is sometimes a vowel.");
- break;
- }
- default:
- {
- Console.WriteLine("Input is a consonant");
- break;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment