返回列表 发帖
  1. @echo off
  2. set a=0
  3. :frist
  4. set /a a+=1
  5. echo %a%
  6. if %a%==999 (pause) else (goto frist)
复制代码

TOP

返回列表