Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126319 | 陈冠樾 | 06输出日期 | C++ | Wrong Answer | 1 MS | 268 KB | 171 | 2025-07-17 16:44:22 |
#include<iostream> using namespace std; int main() { int month,year,day; scanf("%d-%d-%d",&month,&year,&day); cout<<year<<"-"<<day<<"-"<<month; return 0; }
------Input------
30-2016-7
------Answer-----
7-30-2016
------Your output-----
2016-7-30