java根据月份,输出这个月的天数 例如:如果输入的数字为5,则输出“5月份有31天”
时间: 2023-05-22 21:07:15 浏览: 110
您好,根据您的输入,我可以回答您的问题。Java可以使用switch语句来根据月份输出该月份的天数。以下是示例代码:
```
int month = 5;
int days = 0;
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
days = 31;
break;
case 2:
days = 28;
break;
case 4:
case 6:
case 9:
case 11:
days = 30;
break;
default:
System.out.println("请输入1-12的整数表示月份");
break;
}
if(days>0){
System.out.println(month+"月份有"+days+"天");
}
```
以上代码可以输出"5月份有31天"。希望我的回答能帮到您!
相关问题
输入月份输出这个月有几天
要实现根据输入的月份输出这个月的天数,我们可以通过一个简单的switch语句来决定。需要注意的是,由于闰年二月有29天,非闰年二月有28天,所以还需要一个方法来判断是否为闰年。
以下是一个简单的Java方法,它接收一个月份和一个年份作为参数,并输出这个月的天数:
```java
public class DaysInMonth {
public static void main(String[] args) {
// 示例用法
int month = 2; // 假设用户输入的月份是2
int year = 2023; // 假设用户输入的年份是2023
printDaysInMonth(month, year);
}
public static void printDaysInMonth(int month, int year) {
switch (month) {
case 1: case 3: case 5: case 7: case 8: case 10: case 12:
System.out.println("这个月有 31 天");
break;
case 4: case 6: case 9: case 11:
System.out.println("这个月有 30 天");
break;
case 2:
if (isLeapYear(year)) {
System.out.println("这个月有 29 天");
} else {
System.out.println("这个月有 28 天");
}
break;
default:
System.out.println("输入的月份不正确");
break;
}
}
public static boolean isLeapYear(int year) {
// 如果年份能被4整除且不能被100整除,或者能被400整除,则是闰年
return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}
}
```
用Java写一个输入月份和天数输出这是多少天的代码
可以使用以下代码实现:
import java.util.Scanner;
public class DaysInMonth {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("请输入月份:");
int month = input.nextInt();
System.out.print("请输入天数:");
int days = input.nextInt();
int daysInMonth = 0;
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
daysInMonth = 31;
break;
case 4:
case 6:
case 9:
case 11:
daysInMonth = 30;
break;
case 2:
if ((days % 4 == 0 && days % 100 != 0) || (days % 400 == 0)) {
daysInMonth = 29;
} else {
daysInMonth = 28;
}
break;
default:
System.out.println("输入的月份不正确!");
break;
}
System.out.println(month + "月" + days + "日是" + daysInMonth + "天。");
}
}
阅读全文