编写一个简易计算器的源代码.doc

编写一个简易计算器的源代码.doc

ID:51713595

大小:52.45 KB

页数:12页

时间:2020-03-15

编写一个简易计算器的源代码.doc_第1页
编写一个简易计算器的源代码.doc_第2页
编写一个简易计算器的源代码.doc_第3页
编写一个简易计算器的源代码.doc_第4页
编写一个简易计算器的源代码.doc_第5页
资源描述:

《编写一个简易计算器的源代码.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、AStack.h#ifndefASTACK_HEADER#defineASTACK_HEADER#includeusingnamespacestd;templateclassAStack{private:intsize;inttop;Elem*listArray;public:AStack(){size=100;top=0;listArray=newElem[100];}~AStack(){delete[]listArray;}voidclear(){top=0;}boolpush(Elem&item){

2、if(top==size)returnfalse;else{listArray[top++]=item;returntrue;}}boolpop(Elem&it){if(top==0)returnfalse;else{it=listArray[--top];returntrue;}}booltopValue(Elem&it)const{if(top==0)returnfalse;else{it=listArray[top-1];returntrue;}}intlength()const{returntop;}};#endifFunction.cp

3、p#include"function.h"#include"AStack.h"#include#includevoidcalUserInfo(){cout<<"t*智能计算器V1.0*"<

4、t*********************"<

6、:r=x+y;break;case'/':r=x/y;break;case'%':(int)o=(int)x%(int)y;r=(double)o;break;case'*':r=x*y;break;case'&':r=extract(x,y);break;case'^':r=pow(x,y);break;}returntrue;}boolisDigit(charch){if(((int)ch>=48)&&((int)ch<=57))returntrue;elsereturnfalse;}boolisPoint(charch){if(ch=='.

7、')returntrue;elsereturnfalse;}boolisOperator(charch){if((ch=='=')

8、

9、(ch=='-')

10、

11、(ch=='+')

12、

13、(ch=='(')

14、

15、(ch==')')

16、

17、(ch=='*')

18、

19、(ch=='&')

20、

21、(ch=='/')

22、

23、(ch=='%')

24、

25、(ch=='^'))returntrue;elsereturnfalse;}doubleturnDigit(charch){doublevalue;value=(double)ch-48;returnvalue;}doublenewDigit

26、(doubleprior_digit,doublenow_digit,boolisHavePoint,doublepoint_num){

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。