简单计算器
Problem Description
读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值。
Input
测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整数和运算符之间用一个空格分隔。没有非法表达式。当一行中只有0时输入结束,相应的结果不要输出。
Output
对每个测试用例输出1行,即该表达式的值,精确到小数点后2位。
Sample Input
1 + 2
4 + 2 * 5 - 7 / 11
0
Sample Output
3.00
13.36
代码:
1 #include<cstdio> 2 #include<iostream> 3 #include<stack> 4 #include<queue> 5 #include<cstring> 6 #include<algorithm> 7 using namespace std; 8 9 int judge(string s) 10 { 11 if(s==")"||s=="(") 12 return 3; 13 else if(s=="/"||s=="*") 14 return 2; 15 else if(s=="+"||s=="-") 16 return 1; 17 else 18 return 0; 19 } 20 21 int main() 22 { 23 //freopen("in.txt","r",stdin); 24 double num1,num2,ans; 25 int len; 26 int i,j,key,flag; 27 char str[205],temp[10];; 28 while(gets(str)) 29 { 30 string tmp2,tmp1,top; 31 queue<string>q; 32 stack<string>s; 33 stack<double>cal; 34 len=strlen(str); 35 for(i=0;i<len;i++) 36 if(str[i]!='0')break; 37 if(i==len)break; 38 str[len]=' '; 39 str[++len]='