标签:style blog io color ar 使用 for sp strong
描述
ACM队的mdd想做一个计算器,但是,他要做的不仅仅是一计算一个A+B的计算器,他想实现随便输入一个表达式都能求出它的值的计算器,现在请你帮助他来实现这个计算器吧。 比如输入:“1+2/4=”,程序就输出1.50(结果保留两位小数)
2 1.000+2/4= ((1+2)*5+1)/4=
1.50 4.00
// 不会处理小数点 #include<stdio.h> #include<string.h> #include<stdlib.h> #include<stack> using namespace std; char pk(char c1,char c2)//运算符大小等级比较 ,(栈顶,下个字符, { if(c1==‘+‘||c1==‘-‘) { if(c2==‘+‘||c2==‘-‘||c2==‘)‘||c2==‘=‘) return ‘>‘; else return ‘<‘; } else if(c1==‘*‘||c1==‘/‘) { if(c2==‘+‘||c2==‘-‘||c2==‘*‘||c2==‘/‘||c2==‘)‘||c2==‘=‘) return ‘>‘; else return ‘<‘; } else if(c1==‘(‘||c1==‘=‘) { if((c1==‘(‘&&c2==‘)‘)||(c1==‘=‘&&c2==‘=‘)) return ‘=‘; else return ‘<‘; } } double oper(double x,char c,double y)//运算 { if(c==‘+‘) return x+y; else if(c==‘-‘) return x-y; else if(c==‘*‘) return x*y; else return x/y; } int main() { int a,i,j,n; scanf("%d",&n); while(n--) { char str[2000]; char ok[200]; int end=0,loop=0; stack<char>SC; SC.push(‘=‘); stack<double>S; scanf("%s",str); for(i=0;i<strlen(str);) { if(str[i]==‘=‘&&SC.top()==‘=‘) break; if(str[i]>=‘0‘&&str[i]<=‘9‘||str[i]==‘.‘) { ok[end++]=str[i]; loop=1; i++; continue; } if(loop) { ok[end]=‘\0‘; double x=atof(ok); end=0; loop=0; S.push(x); } switch(pk(SC.top(),str[i]))//根据符号栈sc.top()与下一个符号比较优先级 { case ‘<‘:SC.push(str[i]);i++;break; case ‘=‘:SC.pop();i++;break; case ‘>‘: double x,y; y=S.top();S.pop(); x=S.top();S.pop(); char c =SC.top();SC.pop(); S.push(oper(x,c,y)); break; } } printf("%.2lf\n",S.top()); } }
标签:style blog io color ar 使用 for sp strong
原文地址:http://www.cnblogs.com/imwtr/p/4069446.html