返回列表 发帖
  1. @echo off
  2. :m
  3. set a=%random%
  4. set/a b=%a% %%2
  5. if %b%==0 goto m else goto next
  6. :next
  7. set c=%a:~1,2%
  8. echo %b%%c%
  9. ping -n 3 127.1>nul 2>nul&exit
复制代码

TOP

返回列表