题解 | #出生日期输入输出#

出生日期输入输出

https://www.nowcoder.com/practice/4a4a9dd1edb6453ba4a0432319200743

#include <stdio.h>

int main() {
    int Id, year ;
    char month, date;
    scanf("%d", &Id);
  //利用 % 和 / 将数据分配给对应的变量
    year = Id / 10000 % 10000;
    month = Id / 100 % 100;
    date = Id % 100;
	//将输出分为四种情况,对应的给月和日补零

    if ((1990 <= year && year <= 2015) && (1 <= month && month <= 12) &&
            (1 <= date && date <= 30)) {
        if (month < 10 && date >= 10)
            printf("year=%d\nmonth=0%d\ndate=%d\n", year, month, date);
        else if (month >= 10 && date < 10)
            printf("year=%d\nmonth=%d\ndate=0%d\n", year, month, date);
        else if (month < 10 && date < 10)
            printf("year=%d\nmonth=0%d\ndate=0%d\n", year, month, date);
        else
            printf("year=%d\nmonth=%d\ndate=%d\n", year, month, date);
    } else {
        printf("EOF!\n");
    }
    return 0;
}

#C语言基础练习#
全部评论

相关推荐

01-01 23:23
复旦大学 Java
点赞 评论 收藏
分享
2025-11-13 14:37
门头沟学院 Java
程序员牛肉:是的,我觉得你最先需要的是多接触计算机圈子。我感觉你这个写的太幼稚了,根本没换位思考面试官。 你对实习的描述还是我写了前后端,我写了Restful接口,我用了EChatrs。你这让面试官怎么问你?问你什么是前后端?问你什么是Restful?讲真的兄弟,你这个简历在面试官眼里就是啥也不懂的好学生。所以一定要尽快加入一个圈子跟大家多聊聊,看看正儿八经的简历是怎么写的。 可以看一下我首页的简历怎么写那篇文章来学一下,你这里面的坑点我那篇文章里面都有讲过。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务