0
我不知道爲什麼,但由於某種原因,總是出現或類似「後藤在這個時候意外」 - 批處理文件
@echo off
echo would you like to go to the next part (y/n)
set /p 1= type y or n here:
if %1% == Y goto 1
if not %1% == Y exit
:1
echo hi
pause
exit
我不知道爲什麼,但由於某種原因,總是出現或類似「後藤在這個時候意外」 - 批處理文件
@echo off
echo would you like to go to the next part (y/n)
set /p 1= type y or n here:
if %1% == Y goto 1
if not %1% == Y exit
:1
echo hi
pause
exit
不宜用數字作爲變量點兒什麼。
%1
手段「的過程的第一個參數,因此您的線路變得
if % == Y goto 1
變化的變量1
到one
,然後再試一次
如果你有迫切需要用數字作爲變量,我建議您僅使用以下解決方案中顯示的那些:
@echo OFF &SETLOCAL enabledelayedexpansion
echo would you like to go to the next part (y/n)
set /p "1=type y or n here: "
if /i "!1!"=="Y" goto 1
if /i not "!1!"=="Y" exit
:1
echo hi
pause
exit