提交时间:2024-05-05 16:40:44

运行 ID: 145668

#include<bits/stdc++.h> using namespace std; bool iszero(int a) { if(a==0) return true; else return false; } int main() { int n; cin>>n; while(1){ if(iszero(n%10)) n/=10; else break; } while(n){ cout<<n%10; n/=10; } return 0; }