Write a C# Sharp program that takes a character as input and check the input (lowercase) is a vowel, a digit, or any other symbol

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program that takes a character as input and check the input (lowercase) is a vowel, a digit, or any other symbol

Sample Output:

Input a symbol: a                                                                                             
It's a lowercase vowel.

الأجوبة

using System;
public class Exercise9
{
    public static void Main()
    {
        char symbol;
         
        Console.Write("Input a symbol: ");
        symbol=Convert.ToChar(Console.ReadLine());
         
        if ((symbol == 'a') || (symbol == 'e') || (symbol == 'i') || 
                (symbol == 'o') || (symbol == 'u'))
            Console.WriteLine("It's a lowercase vowel.");
        else if ((symbol >= '0') && (symbol <= '9'))
            Console.WriteLine("It's a digit.");
        else
            Console.Write("It's another symbol.");        
    }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...