?? ch3-03.l
字號:
%{#include "y.tab.h"#include <math.h>extern double vbltable[26];%}%%([0-9]+|([0-9]*\.[0-9]+)([eE][-+]?[0-9]+)?) { yylval.dval = atof(yytext); return NUMBER; }[ \t] ; /* ignore white space */[a-z] { yylval.vblno = yytext[0] - 'a'; return NAME; }"$" { return 0; /* end of input */ }\n |. return yytext[0];%%
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -