Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119538 | 常钰杰 | 06输出日期 | C++ | Wrong Answer | 1 MS | 272 KB | 203 | 2025-05-17 18:04:15 |
#include<bits/stdc++.h> using namespace std; int main() { char str[10]; cin>>str; cout<<str[9]<<str[8]<<str[7]<<str[0]<<str[1]<<str[2]<<str[3]<<str[4]<<str[5]<<str[6]; return 0; }
------Input------
30-2016-7
------Answer-----
7-30-2016
------Your output-----