怎么用java写一个简易的整数计算器,输入一道算式,然后给出结果,用C语言也行。

不需要设计计算器的图形,我就想看看怎么将一道算式(可以看成一个字符串)转化成int型并求出结果。... 不需要设计计算器的图形,我就想看看怎么将 一道算式(可以看成一个字符串) 转化成int型并求出结果。 展开
 我来答
lgao622
推荐于2017-09-20 · 知道合伙人软件行家
lgao622
知道合伙人软件行家
采纳数:1137 获赞数:6551
毕业于武汉工程大学邮电与信息工程学院通信专业,软件行业,4年工作经验。

向TA提问 私信TA
展开全部
#include <stdio.h>
#include <iostream>
#include <stack>
#include <string>
#include <vector>
#include <sstream>
#include <stdlib.h>
 
using namespace std;
 
vector<pair<int, string> > f(string s)
{
    vector<pair<int, string> > v;
    char ch[100];
    string str;
    int i=0, j;
    while (s[i] != '\0')
    {
        if (s[i] == '(')
        {
            str = s[i++] + '\0';
            v.push_back(make_pair<int, string> (1, str));
        }
        else if (s[i] == ')')
        {
            str = s[i++] + '\0';
            v.push_back(make_pair < int, string>(2, str));
        }
        else if (s[i] == '+' || s[i] == '-')
        {
            str = s[i++] + '\0';
            v.push_back(make_pair < int, string>(3, str));
        }
        else if (s[i] == '*' || s[i] == '/')
        {
            str = s[i++] + '\0';
            v.push_back(make_pair < int, string>(4, str));
        }
        else if(s[i] == ' ')
        {
            i++;
            continue;
        }
        else if (s[i] <= '9' && s[i] >= '0' || s[i] == '.')
        {
            bool dian;
            if(s[i] == '.')
                dian = true;
            j = 1;
            ch[0] = s[i++];
            int k = 1;
            while(s[i] <= '9' && s[i] >= '0' || s[i] == '.')
            {
                if(s[i] == '.' && dian)
                {
                    cout<<"输入2个小数点了"<<endl;
                    while(1);
                }
                ch[j] = s[i];
                ++j;
                ++i;
            }
            ch[j] = '\0';
            v.push_back(make_pair < int, string >(0, ch));
            dian = false;
        }
    }
    return v;
}
 
bool bijiao(int n, string a)
{
    int m;
    if(a == "+" || a == "-")
        m=3;
    else if(a == "*" || a == "/")
        m=4;
    else if(a == "#")
        m=-1;
    return n>m?true:false;
}
 
stack<string> f_nbl(vector<pair<int, string> > v)
{
    stack<string> s, f;
    f.push("#");
    for(vector<pair<int, string> >::iterator xi = v.begin(); xi != v.end(); ++xi)
    {
        if(xi->first == 0)
            s.push(xi->second);
        else
        {
            if(xi->first == 1)
                f.push(xi->second);
            else if(xi->first == 2)
            {
                while(f.top() != "(")
                {
                    s.push(f.top());
                    f.pop();
                }
                f.pop();
            }
            else if(f.top() == "(")
                f.push(xi->second);
            else
            {
                if(f.top() == "#")
                {
                    f.push(xi->second);
                }
                else
                {
                    if(bijiao(xi->first, f.top()))
                        f.push(xi->second);
                    else
                    {
                        while(!bijiao(xi->first, f.top()))
                        {
                            s.push(f.top());
                            f.pop();
                        }
                        f.push(xi->second);
                    }
                }
            }
        }
    }
    while(f.top() != "#")
    {
        s.push(f.top());
        f.pop();
    }
    f.pop();
    while(!s.empty())
    {
        f.push(s.top());
        s.pop();
    }
    return f;
}
 
double f_js(stack<string> s)
{
    double a, b;
    string ch;
    stack<double> p;
    while(!s.empty())
    {
        while(s.top() != "+" && s.top() != "-" && s.top() != "*" && s.top() != "/")
        {
            p.push(atof(s.top().c_str()));
            if (s.size())
                s.pop();
        }
        ch = s.top();
        if (s.size())
            s.pop();
        b = p.size() ? p.top() : 0;
        if (p.size())
            p.pop();
        a = p.size() ? p.top() : 0;
        if (p.size())
            p.pop();
        switch(ch[0])
        {
        case '+' : p.push(a + b); break;
        case '-' : p.push(a - b); break;
        case '*' : p.push(a * b); break;
        case '/' : if(b==0.0)
            {
                cout<<"除数不能为0"<<endl;
                while(1);
            }
            else
                p.push(a / b);
            break;
        }
    }
    return p.size() ? p.top() : 0;
}
 
int main()
{
    string s;
    while (s != "quit")
    {
        cout<<"请输入算式:"<<endl;
        cin>>s;
        cout<<s<<"="<<f_js(f_nbl(f(s)))<<endl;
    }
    return 0;
}

追问
/(ㄒoㄒ)/~~您还真用C啊,还有我说的是整数计算啊,double  f_js就不要了吧。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式