csharp 使用else if语句查找字符是否为元音或辅音的示例。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用else if语句查找字符是否为元音或辅音的示例。相关的知识,希望对你有一定的参考价值。

Console.Write("Enter a letter: ");
char c = Char.Parse(Console.ReadLine());

if (c == 'A' || c == 'a')
{
  Console.WriteLine("Vowel [ei]");
}
else if (c == 'E' || c == 'e')
{
  Console.WriteLine("Vowel [i:]");
}
else if (c == 'I' || c == 'i')
{
  Console.WriteLine("Vowel [ai]");
}
else if (c == 'O' || c == 'o')
{
Console.WriteLine("Vowel [ou]");
}
else if (c == 'U' || c == 'u')
{
  Console.WriteLine("Vowel [ju:]");
}
else
{
  Console.WriteLine("Consonant");
}

//  Enter a letter: j
//  Consonant

以上是关于csharp 使用else if语句查找字符是否为元音或辅音的示例。的主要内容,如果未能解决你的问题,请参考以下文章

c语言:不用if,else语句,也不用循环条件等,输入一个字符,判断是否为大写字母

csharp if else语句的基本示例。

csharp if else语句的基本示例。

if else 语句使用包含多个特殊字符的 char[] C#

csharp 用于查找最大数字的if语句示例。

csharp 用于查找最大数字的if语句示例。