Input
测试输入包含若干测试用例,每个测试用例占一行,
每行不超过200个字符,整数和运算符之间用一个空格分隔。
没有非法表达式。当一行中只有0时输入结束,相应的结果不要输出。
Output
对每个测试用例输出1行,即该表达式的值,精确到小数点后2位。
Sample Input
1 + 2 4 + 2 * 5 - 7 / 11 0
Sample Output
3.00 13.36
代码
//本题一开始不会用 getline,一开始没有认真仔细考虑清楚,怎么处理输入,导致整道题的解题方法全部出错;
//吸取教训:一定要搞清楚适合什么样的输入,就算有利用了得当的数据结构,你也于事无补✔
#include
#include
#include
#include
using namespace std;
void calculate(string str)
{
double n=0.0;
double num[200],st[200];
char ch[200],st_ch[200];
int step_n=0,step_c=0;
char save = '0';
for (int i=0; i < str.size(); i++)//把数字和运算符统一拆出来,分别存入num,ch数组
{
if (str[i] >= '0' && str[i] <= '9')
{
n = n * 10 + str[i] - '0';
}
else if (str[i] != ' ')
{
num[step_n++] = n;
n = 0.0;
ch[step_c++] = str[i];
i++;
}
}
num[step_n] = n;//最后一个数字存入数组中
st[0] = num[0];
step_n = 0;
for (int i = 0; i < step_c; i++)
{
if (ch[i] == '+' || ch[i] == '-')
{
st_ch[step_n++] = ch[i];
st[step_n] = num[i+1];
}
else
{
if (ch[i] == '*')
st[step_n] *= num[i + 1];
else
st[step_n] /= num[i + 1];
}
}
n = st[0];
for (int i = 0; i < step_n; i++)//step_n为st数组中数字的个数
{
if (st_ch[i] == '+')
n += st[i + 1];
else
n -= st[i + 1];
}
printf("%.2f\n", n);
}
while(getline(cin,str),str!="0")
int main()
{
string str;
while (getline(cin, str), str!= "0")
{
calculate(str);
}
return 0;
}