个人觉得楼主与题目要求不是很规范 望批评指教 public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入年月日(使用空格隔开)"); while (sc.hasNext()){ String time = sc.nextLine(); String[] s = time.split("\\s+"); int year = Integer.parseInt(s[0]); int month = Integer.parseInt(s[1]); int day = Integer.parseInt(s[2]); if(month <=12 && day<=31){ if((month==2&&day<=28)||(is_Leap(year)&&month==2&&day<=29)||(month!=2)){ int[] month_day = {31,28,31,30,31,30,31,31,30,31,30,31}; int sum = 0; for (int i = 0; i < month - 1; i++) { sum += month_day[i]; } sum += day; if (year>=0 && month > 2 && is_Leap(year) ){ sum += 1; } System.out.println(sum); }else { System.out.println("非闰年的2月只有28天哟"); } }else { System.out.println("请输入正确的年月日"); } } } public static boolean is_Leap (int n){ if(n % 4 == 0 && n % 100 != 0 || n % 400 == 0){ return true; }else { return false; } }
1

相关推荐

10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
牛客网
牛客企业服务