c#写一个控制台应用程序,在屏幕上输入年、月、日,输出下一个闰年是那一年
时间: 2024-02-21 10:58:55 浏览: 126
好的,以下是代码实现:
```csharp
using System;
namespace NextLeapYear
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入年份:");
int year = int.Parse(Console.ReadLine());
int nextLeapYear = year;
while (!IsLeapYear(nextLeapYear))
{
nextLeapYear++;
}
Console.WriteLine("{0}年之后的下一个闰年是{1}年", year, nextLeapYear);
}
// 判断是否为闰年
static bool IsLeapYear(int year)
{
return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}
}
}
```
在控制台中输入年份,程序会输出该年份之后的下一个闰年是哪一年。
阅读全文