kk.l
来自「lex files for given decription used as 」· L 代码 · 共 43 行
L
43 行
%{#include<stdio.h>%}%%[\t ]+ssis |am |are |were |was |be |being |been |do |does |did |will |would |should |can |could |has |have |had |go { printf("%s: The given word is the verb\n",yytext);}a |an |the { printf("%s: The given word is article\n",yytext);}[a-zA-Z]+ { printf("%s: The given word is neither verb nor article\n",yytext);}.|\n {ECHO;}%%main(){ yylex();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?