【批处理命令】goto跳转命令 goto label 跳转到要执行的标签,标签由冒号与标签名组成,多个标签之间要加上exit终止程序继续向下运行同名的标签,程序执行最上面的一个标签名必须是常量,不能是变量 1 @echo off 2 set /p input=PUTAORB: 3 if "%input%"=="A" goto A 4 if "%input%"=... Other 2024-07-04 50 点赞 0 评论 75 浏览