计算每月天数

来源:互联网 发布:淘宝网天天特价800 编辑:程序博客网 时间:2024/05/16 18:55
                System.out.println("输入年、月,空格隔开");Scanner sc = new Scanner(System.in);int y = sc.nextInt();int m = sc.nextInt();switch (m) {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 (y % 400 == 0 || (y % 4 == 0 && y % 100 != 0)) {System.out.println("29天");} else {System.out.println("28天");}break;default:System.out.println("输入错误");}


原创粉丝点击