admin 管理员组

文章数量: 1184232

题目描述:

世界上不同国家有不同的写日期的习惯。比如美国人习惯写成“月-日-年”,而中国人习惯写成“年-月-日”。下面请你写个程序,自动把读入的美国格式的日期改写成中国习惯的日期。
输入格式:
输入在一行中按照“mm-dd-yyyy”的格式给出月、日、年。题目保证给出的日期是1900年元旦至今合法的日期。
输出格式:
在一行中按照“yyyy-mm-dd”的格式给出年、月、日。
输入样例:
03-15-2017
输出样例:
2017-03-15

利用scanf,printf的格式输入输出即可

代码如下

#include<cstdio>#include<cstdlib>#include<cmath>#include<cstring>#include<iostream>#include<algorithm>#include<queue>#include<map>#include<stack>#include<set>usingnamespacestd;
typedeflonglong ll;
typedefunsignedlonglong ull;
int main() {
    ios::sync_with_stdio(false);
    int year;
    int month;
    int days;
    scanf("%d-%d-%d",&month,&days,&year);
    printf("%d-%02d-%02d",year,month,days);
    return0;
}

本文标签: 轻松搞定 的格式给 日期格式