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

今年的第几天?

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

#include <stdio.h>
int main(){
    int Month[13] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    int year, month, day;
    while (scanf("%d %d %d", &year, &month, &day) != EOF){
        int total = 0;
        if(month == 1){
            printf("%d\n", day);
        }
        else{
            for (int i = 0; i < month - 1; ++i) {
                total += Month[i];
            }
            total += day;
            if(month > 2 && year % 100 != 0 && year % 4 == 0 || year % 400 == 0){
                total++;
            }
            printf("%d\n", total);
        }
    }
    return 0;
}

全部评论

相关推荐

Noel_:中石油是这样的 哥们侥幸混进免笔试名单 一看给我吓尿了
点赞 评论 收藏
分享
双非坐过牢:非佬,可以啊10.28笔试,11.06评估11.11,11.12两面,11.19oc➕offer
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务