Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136913 胡思齐 04四位数移位 C++ Wrong Answer 1 MS 268 KB 165 2025-11-15 16:19:35

Tests(0/8):


Code:

#include<iostream> using namespace std; int main() { int a,b,c,d,e; a=3456; b=a%10; c=a/10%10; d=a/100%10; e=a/1000; cout<<b<<c<<d<<e; }


Run Info:

------Input------
6234
------Answer-----
4623
------Your output-----
6543