题解 | #计算日期到天数转换#

计算日期到天数转换

http://www.nowcoder.com/practice/769d45d455fe40b385ba32f97e7bcded

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String[] ymd = scan.nextLine().split(" ");
        int year = Integer.valueOf(ymd[0].trim());
        int month = Integer.valueOf(ymd[1].trim());
        int day = Integer.valueOf(ymd[2].trim());
        int ans = 0;
        if (month > 1) {
            ans += 31;
        }
        if (month > 2) {
            if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
                ans += 29;
            } else {
                ans += 28;
            }
        }
        if (month > 3) {
            ans += 31;
        }
        if (month > 4) {
            ans += 30;
        }
        if (month > 5) {
            ans += 31;
        }
        if (month > 6) {
            ans += 30;
        }
        if (month > 7) {
            ans += 31;
        }
        if (month > 8) {
            ans += 31;
        }
        if (month > 9) {
            ans += 30;
        }
        if (month > 10) {
            ans += 31;
        }
        if (month > 11) {
            ans += 30;
        }
        ans += day;
        System.out.println(ans);
    }
}
全部评论
该牛油正在参与牛客写题解薅羊毛的活动,牛币,周边,京东卡超多奖品放送,活动进入倒计时!快来捡漏啦https://www.nowcoder.com/discuss/888949?source_id=profile_create_nctrack&channel=-1
点赞 回复 分享
发布于 2022-04-27 11:41

相关推荐

一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
评论
2
1
分享
牛客网
牛客企业服务