输入一个年份,判断这个年份是否为闰年
时间: 2023-05-20 20:02:34 浏览: 87
输入年份判断是否是闰年
4星 · 用户满意度95%
这是一个编程类的问题,可以回答。判断一个年份是否为闰年的方法是:如果这个年份能被4整除但不能被100整除,或者能被400整除,那么这个年份就是闰年。下面是一个示例代码:
```python
def is_leap_year(year):
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
```
你可以将这个代码复制到你的编程环境中运行,然后输入一个年份,程序会输出这个年份是否为闰年。
阅读全文