首页 > 其他 > 详细

计算日期到天数转换, 华为

时间:2020-07-06 23:52:04      阅读:126      评论:0      收藏:0      [点我收藏+]

判断闰年:4年闰, 100年不闰, 400 年再闰。


import java.util.*;
public class Main {
    static boolean isLeapYear(int year) {
        if(year % 400 == 0 || (year % 4 == 0 && year % 100 != 0)) return true;
        return false;
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()) {
            int year = sc.nextInt();
            int month = sc.nextInt();
            int day = sc.nextInt();
            int[] days = new int[] {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
            if(year < 0) System.out.println(-1);
            else {
                if(isLeapYear(year))
                    days[2] ++;
                if(month < 1 || month > 12) System.out.println(-1);
                else {
                    if(day < 1 || day > days[month]) System.out.println(-1);
                    else {
                        int res = 0;
                        for(int i=1; i < month; i++) res += days[i];
                        res += day;
                        System.out.println(res);
                    }
                }
            }
            
        }
    }
}

计算日期到天数转换, 华为

原文:https://www.cnblogs.com/lixyuan/p/13258149.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!