获取用户输入月份,输出该月有多少天(考虑闰年)
时间: 2023-05-29 07:03:59 浏览: 32
以下是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 in [4, 6, 9, 11]:
days = 30
else:
days = 31
print(f"{year}年{month}月有{days}天")
```
首先让用户输入年份和月份,然后根据输入的月份判断该月有多少天。对于2月份需要特殊考虑是否为闰年,而其他月份只需根据是30天还是31天来判断。最后输出结果。
相关问题
获取用户输入月份,输出该月有多少天(考虑闰年
)。
提示:
闰年的判断方法为:能被4整除但不能被100整除,或者能被400整除的年份为闰年。
以下是Python代码实现:
```python
month = int(input("请输入月份:"))
year = int(input("请输入年份:"))
if month in [1, 3, 5, 7, 8, 10, 12]:
print("{0}年{1}月有31天".format(year, month))
elif month in [4, 6, 9, 11]:
print("{0}年{1}月有30天".format(year, month))
elif month == 2:
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
print("{0}年{1}月有29天".format(year, month))
else:
print("{0}年{1}月有28天".format(year, month))
else:
print("输入月份有误!")
```
获取用户输入月份,输出该月有多少天(考虑闰年)
可以使用 Python 中的 `calendar` 模块来获取每个月的天数,代码如下:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
days = calendar.monthrange(year, month)[1]
if month == 2 and calendar.isleap(year):
days += 1
print(f"{year}年{month}月有{days}天。")
```
代码中,先使用 `input` 函数获取用户输入的年份和月份。然后使用 `calendar.monthrange(year, month)` 函数获取指定年份月份的天数和该月第一天是星期几,返回一个元组,其中第二个元素就是该月的天数。如果该月是二月并且是闰年,则将天数加一。最后使用 `print` 函数输出结果。
阅读全文