zhen 当前离线
列兵
@echo off set pass=123 :again set /p "var=请输入密码:" if %var%==%pass% (echo 登陆成功! ) else ( echo 密码不正确,请重新输入! )&&goto again pause复制代码
TOP