Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101303 | 钱恩浩 | 06输出日期 | C++ | Wrong Answer | 1 MS | 268 KB | 200 | 2024-12-14 19:19:42 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int a,d,c; scanf("%d-%d-%d",&a,&d,&c); cout<<c<<a<<d; return 0; }
------Input------
30-2016-7
------Answer-----
7-30-2016
------Your output-----
7302016