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 (second > first)
{
	largest = second;
}
Console.WriteLine("The bigger number is: {0}", largest);

// Enter the first number:
// 5
// Enter the second number: 
// 10
// The bigger number is: 10

以上是关于csharp 用于查找最大数字的if语句示例。的主要内容,如果未能解决你的问题,请参考以下文章

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

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

一个 If 语句,用于查找数字字段是不是留空或有太多小数位,但如果小数位只有零则忽略

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

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

csharp if else语句的基本示例。