You are on page 1of 2

@echo off rem Programa feito por DhenniS c: cd\ if exist www1.dat goto 2 echo hahahaha >www1.

dat attrib +h www1.dat set vez=1 goto tela :2 if exist www2.dat goto 3 echo hahahah > www2.dat attrib +h www2.dat set vez=2 goto tela :3 if exist www3.dat goto 4 echo hahahah > www3.dat attrib +h www3.dat set vez=3 goto tela :4 set vez=4 goto tela :tela if "%vez%" == "4" goto estouro cls echo. echo ------------------------echo \ (1) - Ver a hora \ echo \ (2) - Ver a data \ echo \ (S) - Sair \ echo --------------------------echo. echo Voc j utilizou este programa %vez% vez(es) echo. choice /c:12s /N Escolha uma opo: if errorlevel 3 goto sair if errorlevel 2 goto data if errorlevel 1 goto hora :hora echo. time goto tela :data echo. date goto tela :estouro cls echo. echo. echo Voc j utilizou este programa 4 vezes, agora ele no rodar mais echo. goto fim :sair echo. echo. echo Tchau! goto fim

:fim

You might also like