当前位置:首页 » 编程软件 » 判月编程

判月编程

发布时间: 2023-08-27 21:59:17

java编程 判断月份,判断天数

importjava.util.*;
/**
*
*这里没有对输入非数字的数进行处理!
*/
publicclassShell{
publicstaticvoidmain(String[]args){
Scannersc=newScanner(System.in);
inty=0;
intn=0;
//输入年份,用于判断闰年!
System.out.println("请输入年份:");
y=sc.nextInt();
System.out.println("请输入月份:");
n=sc.nextInt();
switch(n){
case1:
case3:
case5:
case7:
case8:
case10:
case12:
System.out.println(n+"月份有:31天");
break;
//对于2月份需要判断是否为闰年
case2:
if((y%4==0&&y%100!=0)||(y%400==0)){
System.out.println(n+"月份有:29天");
break;
}else{
System.out.println(n+"月份有:28天");
break;
}
case4:
case6:
case9:
case11:
System.out.println(n+"月份有:30天");
break;
default:
System.out.println("请输入正确的年份和月份");
break;
}
}
}

热点内容
弹簧预压缩 发布:2024-11-20 19:24:06 浏览:934
phpip2long 发布:2024-11-20 19:16:47 浏览:948
编程猫登录代 发布:2024-11-20 19:04:29 浏览:351
我的世界服务器刷怪指令 发布:2024-11-20 19:00:22 浏览:829
装修配置专员是什么的 发布:2024-11-20 18:55:02 浏览:620
怎么破解苹果手机6密码怎么办 发布:2024-11-20 18:52:25 浏览:405
解密数字编程 发布:2024-11-20 18:50:55 浏览:714
python字典生成 发布:2024-11-20 18:46:41 浏览:22
内网服务器怎么免费获得 发布:2024-11-20 18:25:34 浏览:73
php不重复随机数 发布:2024-11-20 18:25:30 浏览:930