Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103561 | 李朋秦 | 06输出日期 | C++ | Wrong Answer | 1 MS | 272 KB | 196 | 2024-12-29 12:30:46 |
#include<iostream> #include<cstdio> #include<iomanip> #include<cmath> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<c<<"-"<<a<<"-"<<b; return 0; }
------Input------
30-2016-7
------Answer-----
7-30-2016
------Your output-----
-7-30--2016