Facebook
From Mature Dove, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 316
  1. %option noyywrap
  2. %{
  3.         #include<stdio.h>
  4. %}
  5.  
  6. %%
  7. ([ ]|[  ])*[12346789]|([1-9]+[12346789])([ ]|[  ])* {printf("%s (-)",yytext);}
  8. ([ ]|[  ])*[05]|([1-9]+[05])([ ]|[      ])* {printf("%s (+)",yytext);}
  9.  
  10. %%
  11.  
  12. int main()
  13. {
  14. yylex();
  15. }