Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5074 詹梓涵 06输出日期 C++ Accepted 0 MS 264 KB 209 2024-11-02 10:05:56

Tests(2/2):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int a,b,c; scanf("%d-%d-%d",&a,&b,&c); printf("%d-%d-%d",c,a,b); return 0; }