您的位置:首页 > 其它

(原创)批处理中变量的用法

2012-02-29 15:38 211 查看
批处理中变量的用法

@echo off

:S
Echo Please input the start part

set/p start=

if "%start%"=="" goto S

Echo Please input the middle part

Set /p middle=

Echo Please input the end part

Set /p end=

Set /p all= the above three part =%start%%middle%%end%

@echo %all%

pause
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: