Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
127207 陈俊亦 04倒序输出五位数 C++ Wrong Answer 1 MS 268 KB 375 2025-07-25 16:42:24

Tests(0/10):


Code:

#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; cin>>a; b=a/10; c=a%10; d=b/10; e=b%10; cout<<a<<b<<c<<d<<e; return 0; }


Run Info:

------Input------
15350
------Answer-----
05351
------Your output-----
15350153501535