Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89506 朱安然 04四位数移位 C++ Wrong Answer 0 MS 268 KB 127 2024-08-25 13:21:22

Tests(5/8):


Code:

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


Run Info:

------Input------
7980
------Answer-----
0798
------Your output-----
798