Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104605 周轩屹 04四位数移位 C++ Accepted 1 MS 272 KB 191 2025-01-05 15:37:12

Tests(8/8):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c,d,f; cin>>a; b=a%10; c=a%100; d=a%1000; f=a; cout<<b<<f/1000<<d/100<<c/10; return 0; }