首页 > 代码库 > 判断每个月有多少天
判断每个月有多少天
import java.util.Scanner; /* * * * */ public class Demo { public static void main(String[] args) { //提示用户输出年数个月份 Scanner sc = new Scanner(System.in); System.out.println("请输入月数和年数"); int mouth = sc.nextInt(); int year =sc.nextInt(); //判断天数 for(;;){ if(mouth>0&&mouth<13){ switch(mouth){ case 1: case 3: case 5: case 7: case 8: case 10: case 12: System.out.println(year+"年"+mouth+"月"+"有31"); break; case 4: case 6: case 9: case 11: System.out.println(year+"年"+mouth+"月"+"有30天"); break; case 2: if(year%4==0){ System.out.println(year+"年"+mouth+"月"+"有29天"); }else{ System.out.println(year+"年"+mouth+"月"+"有28天"); } break; //default: //System.out.println("你输入的月份有误!请重新输入"); } //跳出循环 break; }else{ System.out.println("你输入的月份有误,请重新输入月份"); mouth =sc.nextInt(); } } } }
判断每个月有多少天
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。