python输入年份判断闰年c#
时间: 2024-10-23 14:01:08 浏览: 10
在Python中,你可以使用以下简单的逻辑来判断一个年份是否是闰年:
```python
def is_leap_year(year):
if year % 4 == 0:
if year % 100 != 0 or (year % 400 == 0): # 非世纪年或世纪闰年
return True
else:
return False
else:
return False
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(f"{year}是闰年")
else:
print(f"{year}不是闰年")
```
而在C#中,也有类似的做法,可以参考下面的代码:
```csharp
using System;
class Program
{
static void Main()
{
Console.Write("请输入一个年份:");
int year = Convert.ToInt32(Console.ReadLine());
if (IsLeapYear(year))
{
Console.WriteLine($"{year}是闰年");
}
else
{
Console.WriteLine($"{year}不是闰年");
}
}
public static bool IsLeapYear(int year)
{
return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}
}
```
在这两个例子中,都遵循了闰年的规则:能被4整除但不能被100整除的年份是闰年,除非它也能被400整除。
阅读全文