编辑代码

#include <bits/stdc++.h>
using namespace std;
stack<int> S;
int toInt(string t){
    int res=0;
    for(int i=0;i<t.length();++i){
        res=res*10+t[i]-'0';
    }
    return res;
}
int cal(int x,int y,string op){
    if(op=="+")return x+y;
    if(op=="-")return x-y;
    if(op=="/")return x/y;
    if(op=="*")return x*y;
    return -1;
}
int main() {
    string s[101];
    string x;
    int k=0;
    while(cin>>x&&x!="#"){
        s[k++]=x;
    }
    // for(int i=0;i<k;++i){
    //     cout<<s[i]<<' ';
    // }
    int ans=-1;
    for(int i=0;i<k;++i){
        if(s[i].size()==1&&!isdigit(s[i][0])){
            int t1=S.top();S.pop();
            int t2=S.top();S.pop();
            ans=cal(t2,t1,s[i]);
            // cout<<ans<<'\n';
            S.push(ans);
        }else {
            S.push(toInt(s[i]));
        }
    }
    cout<<S.top();
   return 0;
}