用switch判断月份天数
时间: 2023-09-13 12:08:10 浏览: 164
可以使用以下代码使用 switch 语句判断月份天数:
```
int month, days;
printf("请输入月份:");
scanf("%d", &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:
days = 28;
break;
default:
printf("输入错误!\n");
return 0;
}
printf("%d月有%d天。\n", month, days);
```
在以上代码中,首先使用 `scanf` 函数获取用户输入的月份,然后使用 switch 语句判断月份的天数,最后输出结果。其中,case 1 到 case 12 分别代表每个月份,default 表示输入错误的情况。
相关问题
用switch语句判断月份天数
好的,我可以回答这个问题。请看下面的代码:
```c
#include <stdio.h>
int main() {
int month, days;
printf("请输入月份:");
scanf("%d", &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:
days = 28;
break;
default:
printf("输入的月份不合法!\n");
return ;
}
printf("%d月有%d天。\n", month, days);
return ;
}
```
这个程序可以根据输入的月份,判断这个月有多少天。其中,使用了 switch 语句来判断月份。如果输入的是 1、3、5、7、8、10 或 12,那么这个月有 31 天;如果输入的是 4、6、9 或 11,那么这个月有 30 天;如果输入的是 2,那么这个月有 28 天。如果输入的月份不在 1 到 12 的范围内,那么程序会输出一个错误提示。
用java设定月份变量 month ,用 switch 判断输出此月份对应的天数(2月包含闰年的判断)
在Java中,你可以创建一个`Month`变量并使用`switch`语句根据不同月份计算天数,包括特殊情况如二月的处理。这里是一个例子:
```java
int month = 2; // 假设我们想要获取2月的天数
switch (month) {
case 1: // January
System.out.println("January has " + (month == 2 && isLeapYear() ? 29 : 31) + " days.");
break;
case 2: // February
if (isLeapYear()) {
System.out.println("February in a leap year has " + 29 + " days.");
} else {
System.out.println("February in a common year has " + 28 + " days.");
}
break;
case 3: // March
System.out.println("March has " + 31 + " days.");
break;
// ... 继续添加其他月份的case
default:
System.out.println("Invalid month number.");
}
// 假设isLeapYear()函数用于判断是否为闰年,你可以像这样实现它:
boolean isLeapYear() {
int currentYear = 2023; // 这里假设是当前年份
return (currentYear % 4 == 0 && (currentYear % 100 != 0 || currentYear % 400 == 0));
}
```
在这个例子中,`isLeapYear()`函数用来检查给定的年份是否是闰年。请注意,你需要根据实际需要调整这个函数以及年份。
阅读全文