Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107974 | 胥博雯 | 06输出日期 | C++ | Wrong Answer | 1 MS | 268 KB | 172 | 2025-01-19 10:14:57 |
#include<iostream> #include<cstdio> using namespace std; int main(){ double a,b,c; scanf("%d-%d-%d",&a,&b,&c); printf("%d-%d-%d",c,a,b); return 0; }
------Input------
30-2016-7
------Answer-----
7-30-2016
------Your output-----
8054832-32-0