Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113658 王镜铭 04四位数移位 C++ Accepted 1 MS 272 KB 196 2025-03-16 12:07:38

Tests(8/8):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ long long a,b,c,d,e; cin>>a; b=a/1000; c=a/100%10; d=a/10%10; e=a%10; cout<<e<<b<<c<<d; return 0; }