我想知道是否有办法限制批处理文件的循环。我的意思是:假设我有一个脚本:
@echo off
:start
echo Enter the password
set /p password=
if %password%== abcdefg goto correct
if not %password%== abcdefg goto start
:correct
echo good job
timeout 2 > nul
exit
:wrong
echo You are wrong
timeout 1 > nul
exit
说我想让你经历三遍开始,然后你就错了。我该怎么做?