返回列表 发帖
我是这样实现的
@echo off
for /l %%a in (0 1 9) do (
     for /l %%b in (0 1 9) do (
echo %%a%%b
    )
)
if "%1" equ "" pause
exit

TOP

返回列表