L1-042. 日期格式化
时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
陈越
世界上不同国家有不同的写日期的习惯。比如美国人习惯写成“月-日-年”,而中国人习惯写成“年-月-日”。下面请你写个程序,自动把读入的美国格式的日期改写成中国习惯的日期。
输入格式:
输入在一行中按照“mm-dd-yyyy”的格式给出月、日、年。题目保证给出的日期是1900年元旦至今合法的日期。
输出格式:
在一行中按照“yyyy-mm-dd”的格式给出年、月、日。
输入样例:03-15-2017输出样例:
2017-03-15
我的代码
#include<iostream> #include<stdio.h> using namespace std; int main(){ string str; cin>>str; cout<<str.substr(6,4)<<"-"<<str.substr(0,5); return 0; }