Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89034 赵天瑜 06输出日期 C++ Accepted 1 MS 268 KB 235 2024-08-21 18:00:43

Tests(2/2):


Code:

#include<iostream> #include<cstdio> #include<iomanip> #include<string> using namespace std; int main() { int year,month,day; scanf("%d-%d-%d",&day,&year,&month); printf("%d-%d-%d",month,day,year); return 0; }