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

计算日期到天数转换

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

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner fzhinput = new Scanner(System.in);
        int year = fzhinput.nextInt();
        int month = fzhinput.nextInt();
        int day = fzhinput.nextInt();
        int num=0;
        int ermonthday;
        if(year%4==0&&year%100!=0||year%400==0){
            ermonthday=29;
        }
        else{
            ermonthday=28;
        }

        for(int i =1;i<=month;i++){

            if(i%2==0&&i<8&&i!=2&&i<month){
                num+=30;
            }
            else if(i%2==1&&i<8&&i<month){
                num+=31;
            }
            else if(i==2&&i<month){
                num+=ermonthday;
            }
            else if(i%2==1&&i>7&&i<month){
                num+=30;
            }
            else if(i%2==0&&i>7&&i<month){
                num+=31;
            }
            else if(i==month){
                num+=day;
            }
        }
        System.out.println(num);
    }
}

全部评论

相关推荐

积极的小学生不要香菜:你才沟通多少,没500不要说难
点赞 评论 收藏
分享
06-26 15:33
青岛工学院 Java
积极的秋田犬要冲国企:他现在邀请我明天面试
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务