@echo off title Guessing Game :menu cls echo Hello! Welcome to the game. echo 1. Start Game echo 2. Exit set /p opt=Choose an option: if %opt%==1 goto game if %opt%==2 goto exit :game cls set /p guess=Guess the number (1-5): if %guess%==3 echo Correct! You win. if NOT %guess%==3 echo Wrong! Try again. pause goto menu :exit exit

Comments

Popular posts from this blog