用c#帮我写代码:输入一个年份,判断该年是否是闰年,如果是闰年,输出闰年;否则,输出平年。 闰年:(能被400整除)或者(能被4整除但是不能被100整除)的年份
时间: 2023-10-23 22:22:08 浏览: 315
C#判断输入的是否为闰年。
5星 · 资源好评率100%
好的,以下是C#代码实现:
```
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);
}
}
}
```
首先,我们使用 `Console.ReadLine()` 获取用户输入的年份,然后使用 `int.Parse()` 将输入的字符串转换为整数类型。
接着,使用 `if` 语句判断该年份是否是闰年。使用 `%` 操作符取余数,判断能否整除 400 或者能否整除 4 但不能整除 100。如果是闰年,则输出该年份是闰年,否则输出该年份是平年。
希望能对您有所帮助!
阅读全文