输入年份.月份,输出该月份天数。
时间: 2024-04-29 12:23:38 浏览: 88
计算指定年份的月份的天数
5星 · 资源好评率100%
以下是Python的代码实现:
```
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 判断是否为闰年
is_leap = (year % 4 == 0 and year % 100 != 0) or year % 400 == 0
# 计算天数
if month in [1, 3, 5, 7, 8, 10, 12]:
days = 31
elif month in [4, 6, 9, 11]:
days = 30
else:
days = 29 if is_leap else 28
print(f"{year}年{month}月有{days}天")
```
输入示例:
```
请输入年份:2021
请输入月份:2
```
输出示例:
```
2021年2月有28天
```
阅读全文