Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
139198 王润中 04倒序输出五位数 C++ Accepted 0 MS 272 KB 218 2025-12-02 19:35:36

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { int h,i,j,k,l,n; cin>>n; h=n%10; i=n/10%10; j=n/100%10; k=n/1000%10; l=n/10000%10; cout<<h<<i<<j<<k<<l; return 0; }