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

今年的第几天?

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

全部评论

相关推荐

铁锈不腻玩家:下面那个袁先生删了,问他怎么回事,头像都换不明白
点赞 评论 收藏
分享
我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务