set /p 参数在纯DOS的情况下不起作用,请教一下,在纯DOS下如何实现等待用户输入一些数据后再进行操作?作者: gawk 时间: 2012-4-16 11:16
choice.exe作者: apang 时间: 2012-4-16 11:47
:st
choice /t:y,5 Press Y to goto 1, or press N to goto 2
if errorlevel 100 goto 3
if errorlevel 2 goto 2
if errorlevel 1 goto 1
goto st
:1
.......
goto 3
:2
......
:3
exit作者: 白色梦香 时间: 2012-4-22 11:38