设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1021|回复: 4
打印 上一主题 下一主题

请看这个计算器程序

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 04:14:08 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include<iostream>
#include<stdlib.h>
#include<ctype.h>
using namespace std;
int add();
int mul();
int number();
void error();
static char exp[81]; //全局变量,垃圾!
static int pos; //又来一个,靠!

int main(){
int ans;
do
{
pos=0;
cout<<"\n请输入表达式"<<endl;
cin>>exp;
ans = add();
if(exp[pos]!='\0')
error();
if(ans!=0)
cout<<ans<<endl;
}while(ans!=0);
return 0;
}
int add()
{
int rtn=mul();
while(exp[pos]=='+'||exp[pos]=='-')
{
int op=exp[pos++];
int opr2=mul();
if(op=='+')
rtn+=opr2;
else
rtn-=opr2;
}
return rtn;
}
int mul()
{
int rtn=number();
while(exp[pos]=='*'||exp[pos]=='/')
{
int op=exp[pos++];
int opr2=number();
if(op=='*')
rtn*=opr2;
else
rtn/=opr2;
}
return rtn;
}
int number()
{
int rtn;
if(exp[pos]=='(')
{
pos++;
rtn=add();
if(exp[pos++]!=')')
error();
return rtn;
}
if(!isdigit(exp[pos]))
error();
rtn=atoi(exp+pos);
while(isdigit(exp[pos]))
pos++;
return rtn;
}
void error()
{
cout<<'\r';
while(pos++)
cout<<' ';
cout<<"error"<<endl<<'\a';
exit(-1);
}
这是我在网上下的一个程序,是个计算器程序,但是那笔没有写注释,真他妈的sb,我看不懂,请问哪位大哥能帮我解释一下呢!
2#
发表于 2009-11-3 04:14:09 | 只看该作者
#include<iostream>
#include<stdlib.h>
#include<ctype.h>
using namespace std;
int add();
int mul();
int number();
void error();
static char exp[81]; //全局变量,垃圾!
static int pos; //又来一个,靠!

int main(){
int ans;
do
{
pos=0;
cout<<"\n请输入表达式"<<endl;
cin>>exp;
ans = add(); 将add赋植给ans;
if(exp[pos]!='\0')
error();
if(ans!=0)
cout<<ans<<endl; 判断add的值是否为0?不是!输出
}while(ans!=0);
return 0;
}
int add() //加法 减法
{
int rtn=mul(); //mul()返回值为rtn故等效于调用number() 函数处理* / 前面的数给rtn;

while(exp[pos]=='+'||exp[pos]=='-')
{
int op=exp[pos++]; //将+或-前面的字符赋给op
int opr2=mul(); //
if(op=='+')
rtn+=opr2;
else
rtn-=opr2;
}
return rtn;
}
int mul()
{
int rtn=number(); ////调用number() 函数处理* / 前面的数
while(exp[pos]=='*'||exp[pos]=='/')
{
int op=exp[pos++];
int opr2=number(); //再次调用number() 函数处理* / 后面的数

if(op=='*')
rtn*=opr2;
else
rtn/=opr2;
}
return rtn;
}
int number()
{
int rtn;
if(exp[pos]=='(')
{
pos++;
rtn=add();
if(exp[pos++]!=')') //"()"优先
error();
return rtn;
}
if(!isdigit(exp[pos]))
error();
rtn=atoi(exp+pos); //将char 转换成 int
while(isdigit(exp[pos])) //int isdigit(int ch); exp[pos] 是否是数是
pos++; //返回1,不是返回0, 包含文件 ctype.h
return rtn;
}
void error()
{
cout<<'\r';
while(pos++)
cout<<' ';
cout<<"error"<<endl<<'\a';
exit(-1);
}
我没运行但估计还是能运行就是不太理想 有点垃圾 不能处理小数
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 04:14:10 | 只看该作者
计算器程序到底是计算什么的

例如写加法计算器是不是应该不能出现

int++

或者+= + 等等

那已经是用到了计算机本来的资源了

也就没什么意思了
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 04:14:11 | 只看该作者
这位仁兄说话好没道德,你不会认真看看吗?你输入表达式后再加个空格就有结果了!
做人要……
回复 支持 反对

使用道具 举报

5#
发表于 2009-11-3 04:14:12 | 只看该作者
写的不错
后缀表达式输入
在 cfree 下运行通过
可以对 () 处理
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 12:31 , Processed in 0.076630 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表