document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. @echo off
  3. title Practica la if , goto si meniuri
  4. :meniu
  5. cls
  6. echo Raspunde cu da sau nu.
  7. echo.
  8. echo Vrei sa inveti sa programezi in batch?
  9. set/p intrebare=
  10. echo.
  11. if %intrebare%==da goto dah
  12. if %intrebare%==nu goto nuh
  13. :dah
  14. cls
  15. echo Atunci continua sa citesti in continuare.
  16. pause
  17. goto end
  18. :nuh
  19. cls
  20. echo Daca nu vrei de ce mai citesti asta ?
  21. pause
  22. goto end
  23. :end
  24. cls
  25. echo.
  26. echo Salut !
  27. pause
  28. exit
');