diff --git a/Math.bat b/Math.bat new file mode 100644 index 0000000..6160956 --- /dev/null +++ b/Math.bat @@ -0,0 +1,19 @@ +@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