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

今年的第几天?

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

全部评论

相关推荐

滴滴 后端 薪资n x(15-18),普遍15,3w签字费,12%公积金
来个offer吧求求求:同理想offer,不敢去啊,理想有毁三方裁应届的先例
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:池是池,发是发,我曾池,我现黑
点赞 评论 收藏
分享
10-13 18:19
延边大学 运营
在努力的鸽子a:项目经历可以拆开写吗 然后拆成几段 每段可以把做的数据再突出一下
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务