博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1237 简单计算器
阅读量:6315 次
发布时间:2019-06-22

本文共 1865 字,大约阅读时间需要 6 分钟。

 

简单计算器

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 12832    Accepted Submission(s): 4222

Problem Description
读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值。
 

 

Input
测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整数和运算符之间用一个空格分隔。没有非法表达式。当一行中只有0时输入结束,相应的结果不要输出。
 

 

Output
对每个测试用例输出1行,即该表达式的值,精确到小数点后2位。
 

 

Sample Input
1 + 2
4 + 2 * 5 - 7 / 11
0
 

 

Sample Output
3.00
13.36
 

写得丑点就过不到呀~

反正思路就是见到乘除号就马上把它搞定~再弄加减号这样。

 

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const int N = 3010;const int inf = 1e7+7;const double PI = acos(-1.0);const double eps = 1e-6 ;char str[N];int top1,top2,pos,len;bool is_digit( char s ) { if( s < '0' || s > '9' ) return false ; return true ; }double cal( double a , char s , double b ) { if( s == '+' ) return a+b ; else if( s=='-') return a-b; else if( s=='*') return a*b ; else if( s=='/') return a / b ;}double get(){ double a , b ; char opp; a = 0 ; while( pos < len && is_digit( str[pos] ) ) a = a * 10 + ( str[pos] - '0' ) , pos++; pos++; while( pos < len && ( str[pos] == '*' || str[pos] == '/' ) ) { opp = str[pos] ; pos += 2 ; b = 0 ; while( pos < len && is_digit( str[pos] ) ) b = b * 10 + ( str[pos] - '0' ) , pos++; pos++; a = cal( a , opp , b ); } return a ;}int main(){ #ifdef LOCAL freopen("in.txt","r",stdin); #endif // LOCAL ios::sync_with_stdio(false); while( gets(str) ) { if( str[0] == '0' && strlen(str) == 1 ) break ; double a , b ; char opp ; pos = 0 ; len = strlen(str) ; a = get(); while( pos < len ) { opp = str[pos] ; pos += 2 ; b = get() ; a = cal( a , opp , b ); } printf("%.2lf\n",a ); } return 0;}
View Code

 

转载于:https://www.cnblogs.com/hlmark/p/4109613.html

你可能感兴趣的文章
Asp.net中实现多语言的Page的扩展的基类
查看>>
[LintCode] 在O(1)时间复杂度删除链表节点
查看>>
ehcache2拾遗之write和load
查看>>
高性能 TCP & UDP 通信框架 HP-Socket v3.5.2
查看>>
从二进制数据流中构造GDAL可以读取的图像数据
查看>>
Android自定义组件系列【11】——实现3D立体旋转效果
查看>>
数组方法
查看>>
C# 视频监控系列 序 [完]
查看>>
KVM安装
查看>>
HTML5基础(三)
查看>>
restful api理解
查看>>
二维数组根据某个字段排序
查看>>
iphone手机不同版本兼容、横竖屏
查看>>
Eclipse集成Tomcat的配置步骤实例
查看>>
flask中过滤器的使用
查看>>
多线程学习2:关于WaitForSingleObject
查看>>
CCRD_TOC_2007_EULAR专辑_2
查看>>
RH033读书笔记(6)-Lab 7 Standard I/O and Pipes
查看>>
OCP读书笔记(7) - 使用RMAN执行恢复
查看>>
洗礼灵魂,修炼python(53)--爬虫篇—urllib模块
查看>>