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

计算日期到天数转换

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);
    }
}

全部评论

相关推荐

10-22 19:44
门头沟学院 Java
面了100年面试不知...:那我得去剪个头
点赞 评论 收藏
分享
11-29 00:55
门头沟学院
区域赛银,邀请赛金,打算十二月打下Java基础、背点八股、写个外卖后去投福建小厂的寒假实习,简历应该怎么写呢?以及福州/和厦门有推荐的小厂吗?
牛客53210502...:简历一页:把区域银,邀请赛金标粗,其他的奖除非凑一页否则没有必要写。或者多页:每个站一行这样都列出来。项目经历看看牛客其他人是怎么写的,写的不好呢。简历打磨好按部就班没问题的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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