Write C# Program to Check whether an alphabet is a vowel or not. I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..
using System; public class exercise17 { static void Main(string[] args) { char ch; Console.Write("Input an Alphabet (A-Z or a-z) : "); ch = Convert.ToChar(Console.ReadLine().ToLower()); int i = ch; if (i >= 48 && i <= 57) { Console.Write("You entered a number, Please enter an alpahbet."); } else { switch (ch) { case 'a': Console.WriteLine("The Alphabet is vowel"); break; case 'i': Console.WriteLine("The Alphabet is vowel"); break; case 'o': Console.WriteLine("The Alphabet is vowel"); break; case 'u': Console.WriteLine("The Alphabet is vowel"); break; case 'e': Console.WriteLine("The Alphabet is vowel"); break; default: Console.WriteLine("The Alphabet is not a vowel"); break; } } Console.ReadLine(); } }
06 July 2019 1865 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap