输入年份判断是否为闰年是输出一,不是输出0
时间: 2024-05-15 19:15:08 浏览: 81
以下是Python代码实现:
```
year = int(input("请输入年份:"))
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
print("1")
else:
print("0")
```
解释:
- 用户输入年份,使用`int()`函数将输入转换为整数类型。
- 判断闰年的条件是:能被4整除但不能被100整除,或者能被400整除。
- 如果满足闰年条件,输出1;否则输出0。
相关问题
用Python实现 输入一个年份判断是否为闰年 是输出yes 不是输出no
以下是Python代码实现闰年判断:
```
year = int(input("请输入一个年份:"))
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
print("yes")
else:
print("no")
```
你可以输入年份进行测试。
python输入年份 判断是否为闰年,并输出结果
以下是Python代码实现:
```python
year = int(input("请输入年份:"))
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
print(year, "是闰年")
else:
print(year, "不是闰年")
```
首先用`input()`函数获取用户输入的年份,然后用`int()`函数将其转换为整数类型。然后使用条件语句判断该年份是否为闰年,如果是则输出“是闰年”,否则输出“不是闰年”。判断闰年的规则是:能被4整除但不能被100整除的年份,或者能被400整除的年份,都是闰年。
阅读全文