Nsqs 当前离线
少尉
@echo off set x=3 call:a 3 2 1 pause goto :eof :a echo %1 shift set /a x-=1 if %x% equ 0 goto :eof goto a复制代码
TOP