尝试在批处理文件中设置一些基本验证,但不断收到语法错误。基本上,3 个选择,如果输入的不是 1、2 或 3,我想从头开始。
set input=
set /p input=Choice:
if %input%==1 goto 1
if %input%==2 goto 2
if %input%==3 goto 3
if not %input%==1
if not %input%==2
if not %input%==3
@echo Not a valid choice
goto Start
谢谢