题解 | #今年的第几天?#

今年的第几天?

https://www.nowcoder.com/practice/ae7e58fe24b14d1386e13e7d70eaf04d

#include <iostream>
#include <time.h>
#include <math.h>
int main(){
    int y,m,d;
    while(scanf("%d %d %d",&y,&m,&d)==3){
        struct tm d1 = {0,0,0,d,m-1,y-1900};
        struct tm d2 = {0,0,0,1,0,y-1900};
        time_t ds1 = mktime(&d1);
        time_t ds2 = mktime(&d2);
        double gap = difftime(ds1,ds2);
        int days = (int)ceil(gap/(60*60*24))+1;
        printf("%d\n",days);
    }
    return 0;
}

全部评论

相关推荐

ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-21 22:29
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务