Zitat Zitat von IcE_FiGhTeR
Thx leuts
ahja den bug kann man mit "goto" wegmachen thx
Ja klar kann man den mit goto wegmachen aber was bringts :roll:

Code:
@echo off
set /p w=Welche platte formatieren?
if "%w%" == "c" goto c
if "%w%" == "d" goto d

:c
format c
pause
goto end

:d
format d
pause
goto end

:end
exit