使用if多分支结构实现:输入年份和月份,输出该月天数。
时间: 2023-05-11 10:02:33 浏览: 314
好的,这是一个很常见的编程问题,可以使用if多分支结构来实现。以下是示例代码:
```
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
elif month == 2:
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
days = 29
else:
days = 28
else:
print("输入的月份不合法!")
if days:
print("{}年{}月有{}天。".format(year, month, days))
```
这段代码首先读取用户输入的年份和月份,然后使用if多分支结构来判断该月份的天数。其中,对于1、3、5、7、8、10、12月,天数为31天;对于4、6、9、11月,天数为30天;对于2月,需要判断是否为闰年,如果是闰年则有29天,否则有28天。最后,输出结果。
相关问题
使用if多分支结构实现:输入年份和月份,输出该月天数
可以使用以下代码实现:
```
year = int(input("请输入年份:"))
month = 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("输入的月份不合法")
```
这段代码会根据输入的年份和月份,判断该月有多少天,并输出结果。如果输入的月份不合法(比如输入了13),则会输出提示信息。
使用switch和if双分支结构实现:输入年份和月份,输出该月天数。
好的,以下是使用switch和if双分支结构实现输入年份和月份,输出该月天数的代码:
```c
#include <stdio.h>
int main() {
int year, month, days;
printf("请输入年份和月份:\n");
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("输入的月份不合法!\n");
return 0;
}
printf("%d年%d月有%d天。\n", year, month, days);
return 0;
}
```
希望这个代码能够帮到你!
阅读全文