| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157523 | 李泽曦 | 04倒序输出五位数 | C++ | Wrong Answer | 1 MS | 272 KB | 230 | 2026-07-25 14:46:24 |
#include<iostream> using namespace std; int main() { int a; cin>>a; int w=a/10000; int q=a/1000%10; int b=a/100%10; int s=a/10%10; int g=a%10; cout<<g<<w<<q<<b<<s<<endl; return 0; }
------Input------
15350
------Answer-----
05351
------Your output-----
01535