|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
pop函数定义那会报错,说是冲突类型(这是一个逆波兰计算器)
源代码如下:
#include <stdio.h>
#include <math.h>
#include <ctype.h>
#define MAXOP 100
#define NUMBER '0'
#define MAXVAL 100
#define BUFSIZE 100
char buf[BUFSIZE];
int bufp = 0;
int sp = 0;
double val[MAXVAL];
int main(int argc, char *argv[])
{
char s[MAXOP];
double op2;
while(--argc > 0)
{
ungets(" ");
ungets(*++argv); //把一个空参数和一个参数写入缓冲区
switch(getop(s))
{
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)
{
printf("除数不可为零\n");
}
else
{
push(pop() / op2);
}
break;
default:printf("位置命令%s\n", s);
argc = 1;
break;
}
}
printf("\t%.8g\n", pop());
return 0;
}
void push(double f);
void push(double f)
{
if(sp < MAXVAL)
{
val[sp++] = f;
}
else
{
printf("栈满,无法入栈%g\n", f);
}
}
double pop(void);
double pop(void)
{
if(sp > 0)
{
return val[--sp];
}
else
{
printf("栈为空\n");
return 0;
}
}
int getop(char s[]);
int getop(char s[])
{
int i, c;
while((s[0] = c = getch()) == ' ' || c == '\t')
{
;
}
s[1] = '\0';
if(!isdigit(c) && c != '.')
{
return c;
}
i = 0;
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;
}
int getch(void);
int getch(void)
{
return (bufp > 0) ? buf[--bufp] : getchar();
}
void ungetch(int c);
void ungetch(int c)
{
if(bufp >= BUFSIZE)
{
printf("以超出最多可承受的字符数量\n");
}
else
{
buf[bufp++] = c;
}
} |
|