#include<iostream> #include<stack> using namespace std; int main(){ int n; cin>>n; stack<int> st; while(n>0){ int yu=n%10; st.push(yu); n=n/10; } while(st.top()==0){ st.pop(); } int t=1; while(!st.empty()){ n+=st.top()t; t=10; st.pop(); } cout<<n; }
注册一个 南阳理工学院OJ 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 南阳理工学院OJ 通用账户