2

我正在尝试为 nor 表达式编写计算器,例如“true nor false”。这是我的 .l 文件:

%{
#include <stdlib.h>
#include "y.tab.h"
%}

%% 
"true"              {yylval=1;  return BOOLEAN;}
"false"             {yylval=0;  return BOOLEAN;}
"nor"               {return NOR;}
" "                 { }
.                   {return yytext[0];}

%%

int main(void)
{
    yyparse();
    return 0;
}

int yywrap(void)
{
     return 0;
}
int yyerror(void)
{
    printf("Error\n");
}

这是我的 .y 文件:

/* Bison declarations.  */
%token BOOLEAN
%token NOR
%left NOR
%% /* The grammar follows.  */

input:
    /* empty */
    | input line
    ;

line:
    '\n'
    | exp '\n' {printf ("%s",$1); }
    ;

exp:
    BOOLEAN     { $$ = $1;}
    | exp NOR exp   { $$ = !($1 || $3); }
    | '(' exp ')'  { $$ = $2;}
    ;
%%

问题是当我输入像“true or false”这样的表达式时,我看不到任何结果被打印出来。有谁知道怎么了?

4

1 回答 1

2

printf ("%s",$1);

尝试在 address0或处打印字符串1。你可能是说

printf ("%d",$1);
于 2013-02-28T17:33:38.120 回答