题目描述
波兰表达式是一种把运算符前置的算术表达式,例如普通的表达式2 + 3的波兰表示法为+ 2 3。波兰表达式的优点是运算符之间不必有优先级关系,也不必用括号改变运算次序,例如(2 + 3) * 4的波兰表示法为* + 2 3 4。本题求解波兰表达式的值,其中运算符包括+ - * /四个。
输入
输入为一行,其中运算符和运算数之间都用空格分隔,运算数是浮点数。
Code
#include <bits/stdc++.h>
using namespace std;
double cal()
{
char x[20];
cin >> x;
switch(x[0])
{
case '+':
return cal() + cal();
case '-':
return cal() - cal();
case '*':
return cal() * cal();
case '/':
return cal() / cal();
default:
return atof(x);
}
}
int main()
{
printf("%0.6f", cal());
return 0;
}