参考习题5.5中判断闰年的方法,编程从键盘输入某年某月(包括闰年),用switch语句编程输出该年的该月拥有的天数。要求考虑闰年以及输入月份不在合法范围内的情况。已知闰年的2月有29天,平年的2月有28天。
时间: 2024-10-28 08:08:02 浏览: 64
编程实现从键盘上输入年份和月份,即可输出该页对应的天数含(闰年
对于这个问题,你可以编写如下的程序来根据用户输入的年份和月份确定该月有多少天,同时考虑到闰年的特殊性。这里假设用户输入的是整数年份:
```python
def days_in_month():
year = int(input("请输入年份:"))
month = int(input("请输入月份 (1-12):"))
# 判断输入的月份是否合法
if month < 1 or month > 12:
print("输入的月份无效,请选择1-12之间的整数")
return
# 判断闰年
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
leap_year = True
else:
leap_year = False
switch_case = {
1: 31,
2: leap_year * 29 + (not leap_year) * 28,
3: 31,
4: 30,
5: 31,
6: 30,
7: 31,
8: 31,
9: 30,
10: 31,
11: 30,
12: 31,
}
# 输出结果
print(f"{year}年的{month}月有 {switch_case[month]} 天")
days_in_month()
```
在这个函数中,我们首先检查月份的有效性,然后通过计算得出闰年的2月天数,并根据给定的月份索引从`switch_case`字典获取对应的天数。如果输入的年份不是闰年,2月会有28天;如果是闰年,2月则是29天。
阅读全文