Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125410 唐洪盛 04四位数移位 C++ Accepted 1 MS 268 KB 273 2025-07-14 16:17:02

Tests(8/8):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a;//3456 int b,c,d,e,f,g; b=a/10;//345 c=a%10;//6 d=b/10;//34 e=b%10;//5 f=d/10;//3 g=d%10;//4 cout<<c<<f<<g<<e<<endl; return 0; }