聪明的你帮助C小加解决了中缀表达式到后缀表达式的转换(详情请参考“郁闷的C小加(一)”),C小加很高兴。但C小加是个爱思考的人,他又想通过这种方法计算一个表达式的值。即先把表达式转换为后缀表达式,再求值。这时又要考虑操作数是小数和多位数的情况。
21+2=(19+21)*3-4/5=
12+=3.001921+3*45/-=119.20
还是 atof 准确。。。
#include
#include
#include
#include
#include
using namespace std;
char cmp(char s1,char s2)
{
if((s1 == '+')||(s1 == '-'))
{
if((s2 == '*')||(s2 == '/')||(s2 == '('))
return '<';
else
return '>';
}
else if((s1 == '*')||(s1 == '/'))
{
if(s2 == '(')
return '<';
else
return '>';
}
else if(s1 == '(')
{
if(s2 == ')')
return '=';
else
return '<';
}
else if((s1 == ')')||(s1 == '='))
return '<';
}
int main()
{
stackstr;
stacknum;
char s[1010],c,s1[50];
str.push('=');
int i,len,j,k,test,flag;
float temp,a,b,t;
scanf("%d",&test);
for(j=1;j<=test;j++)
{
temp = 0;
flag = 0;
k = 0;
scanf("%s",s);
len = strlen(s);
for(i=0;i':
c = str.top();
str.pop();
printf("%c",c);
a = num.top();
num.pop();
b = num.top();
num.pop();
if(c == '+')
b += a;
else if(c == '-')
b -= a;
else if(c == '*')
b *= a;
else if(c == '/')
b /= a;
num.push(b);
cmp(str.top(),s[i]);
break;
}
}
temp = num.top();
if(j!=test)
printf("%.2f\n\n",temp);
else
printf("%.2f\n",temp);
}
return 0;
}