Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
145680 古浩圳bylz 反向输出四位数 C++ 解答错误 83 0 MS 248 KB 216 2024-05-05 16:42:41

Tests(5/6):


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


测评信息: