用C#编写程序输入一个年份,判断该年是否是闰年,如果是闰年,输出闰年;否则,输出平年。 闰年:(能被400整除)或者(能被4整除但是不能被100整除)的年份
时间: 2023-10-23 16:22:04 浏览: 165
C#判断输入的是否为闰年。
5星 · 资源好评率100%
好的,以下是使用 C# 编写的程序,可以实现你的需求:
```csharp
using System;
class Program
{
static void Main(string[] args)
{
Console.Write("请输入一个年份:");
int year = int.Parse(Console.ReadLine());
if ((year % 400 == 0) || (year % 4 == 0 && year % 100 != 0))
{
Console.WriteLine("{0}年是闰年", year);
}
else
{
Console.WriteLine("{0}年是平年", year);
}
}
}
```
以上代码中,我们通过使用取模运算符来判断输入的年份是否是闰年。如果能被 $400$ 整除,或者能被 $4$ 整除但不能被 $100$ 整除,就认为是闰年。如果不符合这两个条件,则是平年。最后,我们使用 `Console.WriteLine` 方法输出相应的结果。
阅读全文