Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114715 袁梓豪 04倒序输出五位数 C++ Accepted 1 MS 276 KB 255 2025-03-23 11:50:08

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e,f,g,h,j; cin >>a;//12345 b=a/10;//1234 c=b%10;//4 d=b/10;//123 e=d%10;//3 f=d/10;//12 g=f/10;//1 h=f%10;//2 j=a%10;//5 cout<<j<<c<<e<<h<<g; return 0; }