csharp 使用嵌套if语句的示例。

Posted

tags:

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

Console.Write("Enter the first number: ");
int first = int.Parse(Console.ReadLine());

Console.Write("Enter the second number: ");
int second = int.Parse(Console.ReadLine());

int largest = first;

if (first == second)
{
  Console.WriteLine("The numbers are equal.");
}
else
{
  if (second > first)
  {
    largest = second;
  }
  Console.WriteLine("The bigger number is: {0}", largest);
}

// Enter the first number:
// 7
// Enter the second number: 
// 7
// The numbers are equal.

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

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

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

csharp if else语句的基本示例。

csharp if else语句的基本示例。

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

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