比如 call :plus a b c
将a+b的值给c 怎么写呢?
找到了。。
a.bat
代码:@echo offcall b.bat VarReturnecho 批处理b.bat的返回值是:%VarReturn%
b.bat
代码:@echo offset /a sum=1+2set %1=%sum%
>a.bat