Advertisement
tei123

Untitled

Jan 9th, 2019
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.95 KB | None | 0 0
  1. awk 'BEGIN{print "#include <stdio.h>\n#include <time.h>\n#include <stdlib.h>\nint main(){"}{print} END{print "}"}{print}' pascal.pas>output2.txt
  2.  
  3. awk '
  4. {gsub(/writeln/,"printf");
  5. gsub(/var/,"int");
  6. gsub(/: integer/," ");
  7. gsub(/: randomize/,"srand(time(NULL))");
  8. gsub(/:=random/,"=rand");
  9. gsub(/\047/,"\"");
  10. gsub(/then/,"");
  11. gsub(/end;/,"");
  12. gsub(/do/,"\");
  13. gsub(/:=/,"=");
  14. gsub(/begin/," ");print}'
  15. awk '/./' output3.c>final.c
  16. pascal.pas>output2.txt
  17.  
  18. awk 'BEGIN{print "}"}{print}' pascal.pas>output2.txt
  19.  
  20.  
  21. awk ' {gsub(/writeln/,"printf");gsub(/:=/,"=");gsub(/end;/,"");gsub(/do /,"");gsub(/then/,"");gsub(/\047/,"\"");gsub(/:=random\(20\)/,"=rand()%20");gsub(/var/,"int");gsub(/randomize/,"srand(time(NULL))");gsub(/: integer/,"");gsub(/begin/,"");print}' pascal.pas>output2.txt
  22.  
  23.  
  24. awk 'BEGIN{print "#include <stdio.h>\n#include <time.h>\n#include <stdlib.h>\nint main(){"}{print} END{print "}"}' output2.txt>output3.c
  25.  
  26. awk '/./' output3.c>final.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement