输入年份和月份,输出该月份天数代码
时间: 2023-04-10 19:01:40 浏览: 246
以下是一个 Python 的示例代码:
```python
def days_in_month(year, month):
if month == 2:
if year % 4 == 0 and (year % 100 != 0 or year % 400 == 0):
return 29
else:
return 28
elif month in [4, 6, 9, 11]:
return 30
else:
return 31
```
你可以调用这个函数来获取某个月份的天数,例如:
```python
days_in_feb_2021 = days_in_month(2021, 2)
print(days_in_feb_2021) # 输出 28
```
注意,这个函数没有对输入进行验证,如果输入的年份或月份不合法,可能会导致错误。
相关问题
输入年份和月份,输出该月天数
这是一个常见的编程问题,可以使用以下代码来解决:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
days = calendar.monthrange(year, month)[1]
print(f"{year}年{month}月有{days}天。")
```
这个程序使用了 Python 的 calendar 模块,其中的 monthrange 函数可以返回指定年份和月份的第一天是星期几以及该月的天数。我们只需要取出第二个返回值即可得到该月的天数。
用switch语句编写:输入年份和月份输出该月天数
好的,以下是用 switch 语句编写的代码:
```c
#include <stdio.h>
int main() {
int year, month, days;
printf("请输入年份和月份,用空格隔开:");
scanf("%d %d", &year, &month);
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
days = 31;
break;
case 4:
case 6:
case 9:
case 11:
days = 30;
break;
case 2:
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
days = 29;
} else {
days = 28;
}
break;
default:
printf("输入的月份不正确!");
return 0;
}
printf("%d 年 %d 月有 %d 天\n", year, month, days);
return 0;
}
```
希望这个代码能够帮到你!
阅读全文