全T求调

P1449 后缀表达式

__yiLIUyi__ @ 2024-07-25 14:50:44

#include<bits/stdc++.h>
using namespace std;
stack<int>n;
char c;
string str;
int num,i,top,k;
int main(){
    cin>>str;
    for(c=str[k];c!='@';k++){
        if('9'>=c&&c>='0'){
            int a=c-'0';
            num=num*10+a;
            i=1;
        }
        else if(c=='.'){
            n.push(num);
            num=i=0;
            top++;
        }
        else{
            int a=n.top();
            n.pop();
            int b=n.top();
            n.pop();
            if(c=='+')n.push(b+a);
            if(c=='-')n.push(b-a);
            if(c=='*')n.push(b*a);
            if(c=='/')n.push(b/a);
        }
    }cout<<n.top();
}

by Bismuth_ @ 2024-07-25 15:18:36

@yiLIUyi y,壶关吗qwq


by __yiLIUyi__ @ 2024-07-25 15:19:33

@yzx_mexxi 好哒


上一页 |