|
|
楼主 |
发表于 2019-2-19 10:30:52
|
显示全部楼层
天资愚钝,只能这样了。虽然ZZ但也算是能用了。- @echo off&setlocal enabledelayedexpansion
- echo
- set str=
- set /p str=enter the selected number:
- set str=%str% 999
- :STR_VISTOR
- if not defined str goto:eof
- for /f "tokens=1,*" %%a in ("%str%") do (
- set a=%%a
- set str=%%b
- if "%%b"=="" (goto:fin)
- if !a! GTR 4 (
- echo nonscript
- goto nonscript
- ) else (
- echo script!a!
- goto script!a!
- )
- )
- :script1
- echo 1
- goto STR_VISTOR
- :script2
- echo 2
- goto STR_VISTOR
- :script3
- echo 3
- goto STR_VISTOR
- :script4
- echo 4
- goto STR_VISTOR
- :nonscript
- echo invalid number %a%
- goto STR_VISTOR
- :fin
- echo 233
复制代码 |
|