题解 | #日期类#

日期类

https://www.nowcoder.com/practice/130aa2d7d1f5436b920229dca253893b

#include <stdio.h>

int main(){
    int n;
    int list1[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    scanf("%d",&n);
    for(int i=0;i<n;i++){
        int year,month,day;
        scanf("%d %d %d",&year,&month,&day);
        day++;
        if (day>list1[month]){
            day=day-list1[month];
            month++;
        }
        if (month>12){
            year++;
            month=1;
        }
        printf("%4d-%02d-%02d\n",year,month,day);
    }
    return 0;
}

全部评论

相关推荐

02-15 17:05
已编辑
东华理工大学 前端工程师
Beeee0927:我建议是精简一点吧,比如主修的课程,技能特长,自我评价我是觉得可以删掉了。然后项目经历可能要考虑怎么改得更真实一点,因为就我看起来感觉里面太多的东西像是在实际项目中才能接触到的
点赞 评论 收藏
分享
评论
4
收藏
分享

创作者周榜

更多
正在热议
更多
牛客网
牛客企业服务