批处理中set /p命令(批处理文件编辑的菜鸟级问题)
@echooffset/pans=ifans==memgotomemifans==endgotoend:memmemgotoend:end@echogoodbye以上是我...
@echo off
set /p ans=
if ans==mem goto mem
if ans==end goto end
:mem
mem
goto end
:end
@echo good bye
以上是我编的批处理(根据网上最基础的教程)。
可是在DOS中运行后打end出现的依然是内存使用情况和goodbye
请问高手如何使文件运行后打end就出现goodbye
另求愿意教我批处理编辑的高手的QQ。。 展开
set /p ans=
if ans==mem goto mem
if ans==end goto end
:mem
mem
goto end
:end
@echo good bye
以上是我编的批处理(根据网上最基础的教程)。
可是在DOS中运行后打end出现的依然是内存使用情况和goodbye
请问高手如何使文件运行后打end就出现goodbye
另求愿意教我批处理编辑的高手的QQ。。 展开
2个回答
展开全部
@echo off
set /p ans=
if %ans% == mem goto mem
if %ans% == end goto end
pause
:mem
mem
goto end
:end
echo good bye
应该这样
代码还可以简单化
@echo off
set /p ans=
if %ans% == mem mem
if %ans% == end echo good bye
pause
set /p ans=
if %ans% == mem goto mem
if %ans% == end goto end
pause
:mem
mem
goto end
:end
echo good bye
应该这样
代码还可以简单化
@echo off
set /p ans=
if %ans% == mem mem
if %ans% == end echo good bye
pause
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询