csharp 如何使用switch语句的示例。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 如何使用switch语句的示例。相关的知识,希望对你有一定的参考价值。

Console.WriteLine("Enter the grade letter: ");
char grade = Char.Parse(Console.ReadLine());

switch (grade)
{
  case 'A':
    Console.WriteLine("Excellent!");
    break;
  case 'C':
    Console.WriteLine("Well done");
    break;
  case 'D':
    Console.WriteLine("You passed");
    break;
  case 'F':
    Console.WriteLine("Better try again");
    break;
  default:
    Console.WriteLine("Invalid grade");
    break;
}
Console.WriteLine("Your grade is  {0}", grade);
Console.ReadLine();

以上是关于csharp 如何使用switch语句的示例。的主要内容,如果未能解决你的问题,请参考以下文章

当元素具有多个类时如何在 switch 语句中检查 className

csharp 如何在try结构中使用finally语句以确保执行某些代码的示例。从计算机编程基础知识

csharp 如何在try结构中使用finally语句以确保执行某些代码的示例。从计算机编程基础知识

csharp Switch语句就像流线条件一样。当您想要将单个变量与一系列const进行比较时,它们非常有用

如何在 switch 语句中使用 laravel 模型运行多个 Where 子句

csharp 如何使用throw语句的示例。从C#http://www.introprogramming.info/wp-content/upl的计算机编程基础知识