Advertisement
Guest User

Przykład

a guest
Mar 4th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. @echo off
  2. color 0A
  3. set apka=apkilapki
  4. title apkilapki
  5. echo ---witam w aplikacji %apka%---
  6.  
  7. :start
  8. echo 1. Google
  9. echo 2. YouTube
  10. echo 3. Facebook
  11. echo 4. WYJSCIE
  12. set /p wybieram:={1;2;3} :
  13. if %wybieram:%==1 goto gg
  14. if %wybieram:%==2 goto yt
  15. if %wybieram:%==3 goto fb
  16. if %wybieram:%==4 goto exit
  17.  
  18. :gg
  19. start https://www.google.pl
  20. cls
  21. goto start
  22.  
  23. :yt
  24. start https://youtube.com
  25. cls
  26. goto start
  27.  
  28. :fb
  29. start https://www.facebook.com
  30. cls
  31. goto start
  32.  
  33. :exit
  34. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement