Advertisement
tutorfree

Menu_login_-_operacoes com arquivos_-_arq-login

Sep 13th, 2015
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.23 KB | None | 0 0
  1. @echo off
  2. :usuario
  3. set /p usuario=Usuario:
  4. if "%usuario%" == "aluno" goto:senha else
  5. echo usuario incorreto
  6. goto usuario
  7. :senha
  8. set /p senha=Senha:
  9. if "%senha%" equ "123" goto:fim else
  10. echo senha incorreta
  11. goto senha
  12. :fim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement