fork download
  1. %{
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int nb = 0;
  6. int mot = 0;
  7. int pen = 0;
  8. %}
  9.  
  10. %option noyywrap
  11.  
  12. chiffre [0-9]
  13. mot [a-zA-Z]+
  14. punctuation [,:!;]
  15.  
  16. %%
  17.  
  18. {mot} { mot++; } // Incrémente le compteur de mots
  19. {punctuation}+ { pen++; } // Incrémente le compteur de ponctuations
  20. {chiffre}+ { nb++; } // Incrémente le compteur de nombres
  21.  
  22. %%
  23.  
  24. int main()
  25. {
  26. yylex(); // Appel de l'analyseur lexical
  27. printf("Il y a %d mots\n", mot);
  28. printf("Il y a %d nombres\n", nb);
  29. printf("Il y a %d ponctuations\n", pen);
  30. return 0;
  31. }
  32.  
Success #stdin #stdout #stderr 0.03s 7000KB
stdin
55 555,9 kllflf , § 
stdout
Standard output is empty
stderr
ERROR: /home/Z9rCHU/prog:2:1: Syntax error: End of file in quoted atom
ERROR: '$runtoplevel'/0: Undefined procedure: program/0
   Exception: (3) program ? EOF: exit