返回列表 发帖
@echo off & setlocal enabledelayedexpansion
for /L %%i in (1000,1,1999) do (
    set var=%%i
    echo !var:~-3!   
)
pauseCOPY

TOP

返回列表