用if函数:输入年份月份输出天数
时间: 2023-05-25 21:05:56 浏览: 107
计算指定年份的月份的天数
5星 · 资源好评率100%
以下是 Python 代码:
```python
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
if month == 2:
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
days = 29
else:
days = 28
elif month == 4 or month == 6 or month == 9 or month == 11:
days = 30
else:
days = 31
print("{}年{}月有{}天".format(year,month,days))
```
示例输出:
输入:
```
请输入年份:2022
请输入月份:2
```
输出:
```
2022年2月有28天
```
阅读全文