@echo off REM Math Question Generator System - Windows Batch File REM Author: 赵俊杰 REM Created: 2025 @echo off REM Set console encoding to GBK to match scanner input REM GBK code page is 936, which supports Chinese characters chcp 936 >nul echo Starting Math Question Generator System... echo. REM Execute Java program java -jar MathQuestionGenerator.jar REM Pause after program execution to prevent window from closing immediately pause