使用if多分支结构实现:输入年份和月份,输出该月天数。
时间: 2023-05-11 16:02:32 浏览: 64
好的,这是一个很常见的编程问题。以下是一个示例代码:
```
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 多分支结构来判断每个月的天数。如果输入的月份不合法,程序会输出错误信息。如果输入的月份合法,程序会输出该月的天数。
相关问题
使用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;
}
```
希望这个代码能够帮到你!
阅读全文