在Lex中将八进制数转换为十进制数

时间:2013-12-16 14:05:36

标签: c lex

我一直在尝试编写一个Lex程序,将八进制数转换为十进制数。但在接受数字作为输入后,却没有做任何事情。没有输出。没有程序终止。该程序仍在运行,没有任何输出。

可能是什么错误?我对yywraptodec函数做恶作剧有强烈的感觉。

提前致谢。 :)

源代码:

%{
    #include <stdlib.h>
    #include <stdio.h>
    #include <math.h>
    int v = 0, o = 0, d = 0; //valid bit, octal number, decimal number
%}

%%
^[0-7]+  {v = 1; o = atoi(yytext);}
[\n] {;}
. {v = 0;}
%%

int yywrap()
{
    if (v)
    {
        d = todec(o);
        printf("Decimal is %d\n", d);
    }
    else
    {
        printf("Invalid");
    }
}

int todec(int oct)
{
    int dec = 0, pos = 0;
    while(oct)
    {
        int a = oct % 10;
        dec += a * pow(8, pos);
        pos++;
        oct /= 10;
    }
    return dec;
}

int main()
{
    printf("Enter the octal number: ");
    yylex();
    return 0;
}

1 个答案:

答案 0 :(得分:0)

我引用http://dinosaur.compilertools.net/flex/flex_10.html
* 当扫描仪收到YYINPUT的文件结束指示时,它会检查yywrap()函数

因此,如果您使用ctrl-d模拟EOL行为(输入数字并按回车键后),您可以看到您的计算是正确的。

如果要立即查看结果,则必须在计算后编写输出。

干杯