0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 19:25:26 +00:00
OI-codes/LibreOJ/10127/data/maxnumber.bat
2022-09-17 16:23:49 +08:00

17 lines
291 B (Stored with Git LFS)
Batchfile

@echo off
if "%1"=="" goto loop
copy maxnumber%1.in maxnumber.in >nul
echo Problem Test
echo Data %1
time<enter
maxnumber.exe
time<enter
fc maxnumber.out maxnumber%1.out
del maxnumber.in
del maxnumber.out
pause
goto end
:loop
for %%i in (1 2 3 4 5 6 7 8) do call %0 %%i
:end