도움말. menuInput을 설정 한 후에는 작동하지 않습니다. 항상 그냥 가면된다. 잘못 걸 말할 수있는 타입 A, B, C 또는 다른 어떤.?박쥐에서 시작 : 입력 -> 고토는 작동하지 않습니다
@ECHO off
:hoofdMenu
::Dit is het hoofd menu.
title Hoofdmenu
echo A. Opties
echo B. Starten van game
echo C. Stop programma
set /P menuInput="Maak een keuze:"
if %menuInput% == "a" goto opties
if %menuInput% == "b" goto spelStarten
if %menuInput% == "c" goto exit
:opties
::Geeft alle opties weer -> menu van de opties
title Opties
cls
echo Op dit momment zijn er nog geen opties mogelijk. Sorry.
pause
cls
goto :hoofdMenu
:spelStarten
::Starten van het spel
cls
title Het spel
echo Dit is nog in de maak
pause
cls
goto :hoofdMenu
:exit
::Sluit het programma
exit
여기에 코드를 게시하고 자세한 내용을 입력하십시오. –