#include<bits/stdc++.h>
using namespace std;
int main() {
double a[1010];
while(~scanf("%lf",&a[0])) {
char op;
int i=0;
double nex;
while(~scanf("%c",&op)&&op!='\n') {
scanf("%lf",&nex);
switch(op) {
case '+':
a[++i]=nex;break;
case '-':
a[++i]=-nex;break;
case '*':
a[i]*=nex;break;
case '/':
a[i]/=nex;break;
}
}
double ans=0;
for(int j=0;j<=i;j++){
ans+=a[j];
}
cout<<ans<<endl;
}
return 0;
}
没有带括号的表达式计算
最新推荐文章于 2022-08-06 16:57:00 发布