函数里的取模有点问题

愚蠢的萝卜 2014-08-19 09:35:36
//逆波兰计算器主函数
#include<stdio.h>
#include<stdlib.h>
#include<math.h>

#define MAXOP 100
#define NUMBER '0'

int getop(char s[]);
void push(double);
double pop(void);

main()
{
int type;
double op2;
char s[MAXOP];

while((type = getop(s)) != EOF){
switch (type){
case NUMBER:
push(atof(s));
break;
case '+':
push(pop() + pop());
break;
case '*':
push(pop() * pop());
break;
case '-':
op2 = pop();
push(pop() - op2);
break;
case '/':
op2 = pop();
if(op2 != 0.0)
push(pop() / op2);
else
printf("error: zero divisor\n");
break;
case '%':
op2 = pop();
if(op2 != 0.0) //此处取模
push(fmod(pop(), op2)) ;
else
printf("error:zero divisor for \n");
break;
case '\n':
printf("\t%.8g\n", pop());
break;
default:
printf("error: unknow command %s\n", s);
break;
}
}
return 0;
}





//getch 和 ungetch 函数
#include<stdio.h>
#define BUFSIZE 100

char buf[BUFSIZE];
int bufp = 0;

int getch(void)
{
return (bufp > 0) ? buf[--bufp] : getchar();
}
void ungetch(int c)
{
if(bufp >= BUFSIZE)
printf("ungetch : too many characters");
else
buf[bufp++] = c;
}









//getop函数
#include<ctype.h>
#include<stdio.h>
#define NUMBER '0'

int getch(void);
void ungetch(int);

int getop(char s[])
{
int i, c;

while( (s[0] = c = getchar()) == ' ' || c == '\t' )
;
s[1] = '\0';
if( !isdigit(c) && c != '.' && c != '-' )
return c;
i = 0;
if(c == '-')
if(isdigit(c = getch()) || c == '.')
s[i++] = c;
else {
if(c != EOF)
ungetch(c);
return '-';
}
if( isdigit(c) )
while (isdigit (s[++i] = c = getch()))
;
if(c == '.')
while(isdigit (s[++i] = c = getch()))
;
s[i] = '\0';
if(c != 'EOF')
ungetch(c);
return NUMBER;
}










//push 和 pop函数
#define MAXVAL 100
int sp = 0;
double val[MAXVAL];

void push(double f)
{
if(sp < MAXVAL)
val[sp++] = f;
else
printf("error: stack full, can't push %g\n", f);
}

double pop(void)
{
if(sp > 0)
return val[--sp];
else {
printf("error: stack empty\n");
return 0.0;
}
}


取模的话 输入 7 2 % 结果是正常的是1;

输入 7.0 2.0 % 就不对了 显示op2是等于0.0的
只要加一个 .0 都是 等于0.0了


...全文
89 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
cyd54454 2014-08-19
  • 打赏
  • 举报
回复
我没看清,原来用的就是fmod,抱歉。不过,判断浮点数是否为0,不能用 f != 0.0这样判断.不知道是不是这个原因 你要确定一个精度,比如0.00001 if( f >= -0.00001 && f <=0.00001)来判断f是否为0
cyd54454 2014-08-19
  • 打赏
  • 举报
回复
好吧,%这个取模运算只针对整数,浮点数请用fmod函数

69,382

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧