java,实现控制台程序,输入年份和月份出现该月份的天数
时间: 2024-05-09 07:19:39 浏览: 65
以下是Java代码实现控制台程序,输入年份和月份出现该月份的天数:
```
import java.util.Scanner;
public class DaysInMonth {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
// 获取年份和月份
System.out.print("请输入年份:");
int year = input.nextInt();
System.out.print("请输入月份:");
int month = input.nextInt();
// 计算天数
int days = 0;
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:
System.out.println("输入的月份不合法!");
return;
}
// 输出结果
System.out.println(year + "年" + month + "月共有" + days + "天。");
}
}
```
运行程序后,在控制台输入年份和月份,程序将输出该月份的天数。注意,程序还做了输入合法性的判断,如果输入的月份不是1~12之间的整数,程序将直接结束并输出错误提示。
阅读全文