Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5181 吴乐涵 倒序输出一个四位整数 C++ 通过 100 0 MS 248 KB 174 2020-07-27 21:55:11

Tests(9/9):


#include<bits/stdc++.h> using namespace std; int main(){ int a,g,s,b,q; cin>>a; g=a%10; s=a/10%10; b=a/100%10; q=a/1000%10; cout<<g<<s<<b<<q; return 0; }


测评信息: