首页 > 代码库 > 循环-17. 简单计算器(20)
循环-17. 简单计算器(20)
模拟简单运算器的工作。假设计算器只能进行加减乘除运算,运算数和结果都是整数,4种运算符的优先级相同,按从左到右的顺序计算。
输入格式:
输入在一行中给出一个四则运算算式,没有空格,且至少有一个操作数。遇等号”=”说明输入结束。
输出格式:
在一行中输出算式的运算结果,或者如果除法分母为0或有非法运算符,则输出错误信息“ERROR”。
输入样例:
1+2*10-10/2=
输出样例:
10
#include <iostream>#include <stdio.h>#include <math.h>#include<string>double compute(char c,double op1,double op2){ if(c==‘+‘) return op1+op2; else if(c==‘-‘) return op1-op2; else if(c==‘*‘) return op1*op2; else { return op1/op2; } }// 123+456/2=// 用123作为result,+作为lastop,等到第二个操作数temp=456,//等遇到/,将123+456计算出来,作为result,/作为lastop// 检测到=,就将最后一次的结果计算出来 int main(){ double result; char c; double temp=0; char lastop=‘+‘; while((c=getchar())!=‘=‘) { if(c>=‘0‘&&c<=‘9‘) { temp=10*temp+c-‘0‘; } else if(c==‘+‘) { if(lastop==‘/‘&&temp==0) { printf("ERROR"); return 0; } else { result=compute(lastop,result,temp); } lastop=‘+‘; temp=0; } else if(c==‘-‘) { if(lastop==‘/‘&&temp==0) { printf("ERROR"); return 0; } else { result=compute(lastop,result,temp); } lastop=‘-‘; temp=0; } else if(c==‘*‘) { if(lastop==‘/‘&&temp==0) { printf("ERROR"); return 0; } else { result=compute(lastop,result,temp); } lastop=‘*‘; temp=0; } else if(c==‘/‘) { if(lastop==‘/‘&&temp==0) { printf("ERROR"); return 0; } else { result=compute(lastop,result,temp); } lastop=‘/‘; temp=0; } else if(c==‘ ‘) { } else { printf("ERROR"); return 0; } } if(lastop==‘/‘&&temp==0) { printf("ERROR"); return 0; } else { result=compute(lastop,result,temp); } printf("%d",(int)result); return 0;}
循环-17. 简单计算器(20)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。