返回列表 发帖
  1. @echo off
  2. set /a c=1
  3. :while
  4. set /a n=11-c
  5. set /a d=1
  6. if %n% geq %d% ( echo %n% && set /a c+=1) && goto while else call :end
  7. :end
  8. pause
复制代码

TOP

返回列表