输入年份及月份输出这一年的这个月的天数
时间: 2023-04-24 20:01:52 浏览: 339
输入年份,输出该年份2月份的天数
可以使用Python编程语言来实现这个功能,具体代码如下:
```python
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
if month in [1, 3, 5, 7, 8, 10, 12]:
days = 31
elif month in [4, 6, 9, 11]:
days = 30
else:
if (year % 4 == and year % 100 != ) or year % 400 == :
days = 29
else:
days = 28
print("{}年{}月有{}天".format(year, month, days))
```
运行程序后,输入年份和月份,即可输出该年该月的天数。其中,通过判断月份的值,来确定该月的天数。对于2月份,需要判断是否为闰年,如果是闰年则有29天,否则有28天。最后,使用字符串格式化输出结果。
阅读全文