提交时间:2024-05-05 16:44:30
运行 ID: 145685
#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; }