Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我可以做
echo 3 + 5
并得到8?
8
是否可以使用日期进行计算?
你可以用set /a一个数学表达式来计算:
set /a
set /a x=3+5 echo %x%
编辑:这是一个单行:
@for /f usebackq %i in (`set /a 3 + 5`) do @echo %i
对于第一个问题,您可以使用 & 链接命令在一行中完成。
set /a x=3+5 & echo %x%
至少这在windows7中有效