hdu1237

/**/
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cctype>
#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <vector>
#include <string>
#include <stack>
#include <queue>

typedef long long LL;
using namespace std;

double n;

int main()
{
	//freopen("in.txt", "r", stdin);
	//freopen("out.txt", "w", stdout);

	while(scanf("%lf", &n) == 1){
		char c;
		c = getchar();
		stack<double>st;
		st.push(n);
		if(c == '\n' && n == 0){
			break;
		}
		c = getchar();
		while(scanf("%lf", &n) == 1){
			if(c == '*'){
				double u = st.top();
				st.pop();
				st.push(u * n);
			}else if(c == '/'){
				double u = st.top();
				st.pop();
				st.push(u / n);
			}else if(c == '-'){
				st.push(-n);
			}else{
				st.push(n);
			}
			if(getchar() == '\n') break;
			c = getchar();
		}
		double ans = 0;
		while(st.size()){
			ans += st.top();
			st.pop();
		}
		printf("%.2lf\n", ans);
	}

	return 0;
}
/**/

 

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
小火柴燃烧吧:接啊,接了之后反手在咸鱼找个大学生搞一下,量大从优
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务