Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.32 KB | None | 0 0
  1. @echo off
  2.  
  3. set code = %1
  4.  
  5. if %1%==24 (
  6.   echo "Beltelecom"
  7.   goto endgame
  8. )
  9. if %1%==25 (
  10.   echo "life :)"
  11.   goto endgame
  12. )
  13. if %1%==33 goto foo
  14. if %1%==29 goto foo
  15. goto notfound
  16.  
  17. :foo
  18. echo "The code operator is MTS OR velcom"
  19. goto endgame
  20. :notfound
  21. echo "Such operator hasn't appeared yet"
  22.  
  23. :endgame
  24.  
  25. PAUSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement