rem Datei: batch.bat @echo off goto start :neun echo "Ergebnis ist >= 9" goto ende :acht echo "Ergebnis ist >= 8" goto ende :eins echo "Ergebnis ist >= 1" goro ende :null echo "Ergebnis ist 0" goto ende :start echo Geben Sie Ja oder Nein ein setjn1 jJyY nN if errorlevel 9 goto neun if errorlevel 8 goto acht if errorlevel 1 goto eins if errorlevel 0 goto null :ende