mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 22:58:47 +00:00
17 lines
291 B
Batchfile
17 lines
291 B
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
|