标题:请教!
取消只看楼主
shujujiegou1
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2012-10-10
结帖率:0
 问题点数:0 回复次数:0 
请教!
我想实现一个将中缀表达式转化为后缀表达式的程序,请问这是错在哪了??
#include "stdafx.h"
#include<stack>
#include<iostream>
#include<string>
using namespace std;

int main()
{
    stack<char> op;
    string s;
    cout<<"请输入表达式: ";
    cin>>s;
    istringstream in(s);
    char c;
    while(in>>c)
    {
        if(c=='+'||c=='-'||c=='*'||c=='/')
            op.push(c);
        else if(c==')')
        {
            cout<<op.top()<<" ";
            op.pop();
        }
        else if(c>='0'&&c<='9')
        {
            in.putback(c);
            int n;
            cin>>n;
            cout<<n<<" ";
        }
    }
    while(!op.empty())
    cout<<op.pop()<<endl;
    return 0;
}
搜索更多相关主题的帖子: 表达式 include 
2012-10-14 12:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-383153-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.413159 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved