返回列表 发帖
@echo off

set /a timer=10

echo ======倒计时开始======
timeout 1 >nul

:loop
cls
if %timer% geq 0 (echo %timer%) else (goto :eof)
set /a timer = timer - 1
timeout 1 >nul
call :loop

exit /b

TOP

返回列表