You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
467 B
20 lines
467 B
@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
|