jakorzhang 当前离线
上等兵
@echo off :start for /l %%a in (0,1,7) do ( for %%b in (8 9 a b c d e f) do ( for %%c in (08 19 2a 3b 4c 5d 6e 7f) do ( if not "%%a%%b"=="%%c" ( color %%a%%b&goto start ) ) ) ) pause复制代码
评分人数
apang 当前离线
上将
@echo off :start for /l %%a in (0 1 7) do ( for %%b in (8 9 a b c d e f) do ( for %%c in (08 19 2a 3b 4c 5d 6e 7f) do ( if not "%%a%%b"=="%%c" ( color %%a%%b Rem for /l %%d in (1 1 10) do cd.>nul )))) goto :start复制代码
TOP