00snowman00 当前离线
列兵
@echo off :index set /p input=您的选择是: if "%input%"=="1" goto :1 if "%input%"=="2" goto :2 pause :1 echo 123 pause goto :index :2 echo 456 pause goto :index复制代码
happy886rr 当前离线
等待验证会员
TOP
tigerpower 当前离线
四级士官
flashercs 当前离线
少校
@echo off :index set input= set /p input=您的选择是: if "%input%"=="1" goto 1 if "%input%"=="2" goto 2 goto index pause :1 echo 123 pause goto index :2 echo 456 pause goto index复制代码
yhcfsr 当前离线
中尉
@echo off :index cls set /p "input=您的选择是:" if "%input%"=="1" call :1 if "%input%"=="2" call :2 if "%input%"=="" exit set "input=" pause&goto :index :1 echo 123 exit /b :2 echo 456 exit /b复制代码
jiavip 当前离线
上等兵