
怎么用java写一个简易的整数计算器,输入一道算式,然后给出结果,用C语言也行。
不需要设计计算器的图形,我就想看看怎么将一道算式(可以看成一个字符串)转化成int型并求出结果。...
不需要设计计算器的图形,我就想看看怎么将 一道算式(可以看成一个字符串) 转化成int型并求出结果。
展开
推荐于2017-09-20 · 知道合伙人软件行家
关注

展开全部
#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就不要了吧。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询