| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 127209 | 陈俊亦 | 04倒序输出五位数 | C++ | Wrong Answer | 0 MS | 272 KB | 405 | 2025-07-25 16:44:32 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,c,d,e,f,g; cin>>a; b=a/10; c=a%10; d=b/10; e=b%10; f=c/10; g=c%10; cout<<c<<d<<e<<f<<g; return 0; }
------Input------
15350
------Answer-----
05351
------Your output-----
0153500