输入三个整数,输出最大值csharp
时间: 2024-10-28 15:07:15 浏览: 10
c#求两个数中最大值的方法
在 C# 中,你可以通过比较运算符来找出三个整数中的最大值。这里有一个简单的示例代码:
```csharp
using System;
class Program
{
static void Main()
{
int a = Console.ReadLine().ToInt(); // 读取第一个整数
int b = Console.ReadLine().ToInt(); // 读取第二个整数
int c = Console.ReadLine().ToInt(); // 读取第三个整数
int max = a;
if (b > max)
max = b;
if (c > max)
max = c;
Console.WriteLine("最大的数字是: " + max);
}
public static int ToInt(string input)
{
return Int32.Parse(input);
}
}
```
在这个程序中,我们首先读入三个整数 `a`, `b`, 和 `c`,然后通过嵌套的条件语句判断并更新 `max` 的值,最后输出最大值。
阅读全文