From 6f40ccddfef6c00a5af04741fe29a1316c73668f Mon Sep 17 00:00:00 2001 From: hnu202326010425 <3551664030@qq.com> Date: Mon, 29 Sep 2025 00:22:36 +0800 Subject: [PATCH] Version2.0 --- Math.bat | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Math.bat 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