Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8098 贺昱翔 倒序输出一个四位整数 C++ 通过 100 0 MS 252 KB 182 2020-10-31 16:00:36

Tests(9/9):


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


测评信息: