| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 767 人关注过本帖
标题:ubuntu vim里编写的逆波兰表示法计算器程序 运行出现以下问题 求教
取消只看楼主 加入收藏
lobsters
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2013-3-15
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
ubuntu vim里编写的逆波兰表示法计算器程序 运行出现以下问题 求教
出现的问题是 + - * / 运行正确,但是sin cos pow 等运行结果出错,比如:3.14159265 2 / sin 的结果不是1,     2 3 pow 的结果不是8, 求大神,前辈指点,谢谢!

程序: calculator.c(主程序)+ popandpush.c + getop.c +getchandungetch.c + mathfnc.c
如下:
/*逆波兰计算器*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define MAXOP 100
#define NUMBER '0'
#define NAME 'n'

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

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 NAME:
mathfnc(s);
break;
case '\n':
printf("\t%.8g\n", pop());
break;
default:
printf("error:unknown command %s\n", s);
break;
}
}
return 0;
}
---------------------------------------
/*popandpush.c*/
#define MAXVAL 100
#include <stdio.h>

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;
}
}
------------------------------
/*getop.c*/

#include <ctype.h>
#include <stdio.h>
#include <string.h>

#define NUMBER '0'
#define NAME 'n'

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

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

while ((s[0] = c = getch()) == ' ' || c == '\t')
;
s[1] = '\0';
i = 0;
if (islower(c)){
while (islower(s[++i] = c = getch()))
;
s[i] = '\0';
if (c != EOF)
ungetch(c);
if (strlen(s) > 1)
return NAME;
else
return c;
}
if (!isdigit(c) && c != '.')
return c;
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;
}
-------------------------------
/*getchandungetch.c*/
#define BUFSIZE 100
#include <stdio.h>

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 characers\n");
else
buf[bufp++] = c;
}
---------------------------
/*mathfnc.c*/
#include <stdio.h>
#include <string.h>
#include <math.h>

void mathfnc(char s[])
{
double op2;

if (strcmp(s, "sin") == 0)
push(sin(pop()));
else if (strcmp(s, "cos") == 0)
push(cos(pop()));
else if (strcmp(s, "exp") == 0)
push(exp(pop()));
else if (strcmp(s, "pow") == 0){
op2 = pop();
push(pow(op2, pop()));
}
else
printf("error: %s is not supported\n", s);   
}


[ 本帖最后由 lobsters 于 2013-3-15 16:51 编辑 ]
搜索更多相关主题的帖子: void include ubuntu double 
2013-03-15 16:50
lobsters
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2013-3-15
收藏
得分:0 
回复 2楼 azzbcc
可我的结果是0啊 我也看不出哪里错啊
2013-03-15 20:42
快速回复:ubuntu vim里编写的逆波兰表示法计算器程序 运行出现以下问题 求教
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017227 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved