返回列表 发帖
使用if判断:
  1. @echo off
  2. color f0
  3. :eee
  4. set randomed=%random%
  5. if %randomed% lss 100 goto eee
  6. if %randomed% gtr 200 goto eee
  7. echo %randomed%
  8. set randomed=
  9. pause>nul
  10. exit
复制代码

TOP

返回列表