Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
145685 | 古浩圳bylz | 反向输出四位数 | C++ | 通过 | 100 | 0 MS | 252 KB | 316 | 2024-05-05 16:44:30 |
#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){ if(d==0){ if(c==0){ cout<<b; } else{ cout<<c<<b; } } else{ cout<<d<<c<<b; } } else{ cout<<e<<d<<c<<b; } return 0; }