总是提示syntax error... 谁知道错误出在哪里。。。各位大神帮忙看一下 谢谢啦

#include<stdio.h>charprecedenceget_token(char*symbol,int*n)main(){#defineMAX_STACK_SI... #include <stdio.h>
char precedence get_token(char *symbol, int *n)
main()
{
#define MAX_STACK_SIZE 100
#define MAX_EXPR_SIZE 100
typedef enum{lparen ,rparen, plus, minus, times, divide,
mod, eos, operand} precedence;
int stack[MAX_STACK_SIZE];
char expr[MAX_EXPR_SIZE];
int eval(void);
{
/* evlauste a postfix expression,expr,maintained as a
global variable.'\0'is the end of the expression.
The stack and top of the stack are golbla variables.
get_token is used to return the tokentype and
the character symblo.Operands are assumed to be single
character digits */
precedence token;
char symbol;
int op1,op2;
int n = 0;/* counter for the expression string */
int top = -1;
token = get_token(&symbol,&n);

while(token != eos)
{
if(token == operand)
add(&top,symbol-'0'); /* stack insert */
else
{
/* remove two operands,perform operation,and
return result to the stack*/
op2 = delete(&top); /*stack delete */
op1 = delete(&top);
switch(token)
{
case plus: add(&top,op1+op2);
break;
case minus: add(&top,op1-op2);
break;
case times: add(&top,op1*op2);
break;
case divide: add(&top,op1/op2);
break;
case mod: add(&top,op1%op2);
}
}
token = get_token(&symbol,&n);
}
return delete(&top); /* return result */
}
precedence get_token(char *symbol, int *n)
{
*symbol = expr[(*n)++];
switch(*symbol){
case '(': return lparen;
case ')': return rparen;
case '+': return plus;
case '-': return minus;
case '*': return times;
case '/': return divide;
case '%': return mod;
case ' ': return eos;
default : return operand; /* no error checking,default is operand */
}
}
}
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
arongustc
科技发烧友

2013-10-11 · 智能家居/数码/手机/智能家电产品都懂点
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:5764万
展开全部
你应该把具体错误信息也贴出来
更多追问追答
追问
error C2061: syntax error : identifier 'get_token'
error C2059: syntax error : ';'
error C2059: syntax error : 'type'
追答
precedence是啥?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式