Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87773 赵天瑜 04四位数移位 C++ Accepted 1 MS 272 KB 175 2024-08-14 18:08:53

Tests(8/8):


Code:

#include<iostream> #include<cstdio> using namespace std; int main() { int a,gw,sy; cin>>a; gw=a%10; sy=a/10; cout<<gw<<sy<<endl; return 0; }