我在批处理脚本中有一个循环,我想用循环计数器做一些算术.我发现了如何评估表达式,如何在这里添加数字:
Evaluating expressions in windows batch script
我如何使用变量做同样的事情?
例如:
set x = 100 for /L %%i in (1,1,5) do ( set Result=0 set /a Result = %%i+%%x echo %Result% )
作为输出我期望
101
102
103
104
105
谢谢!
你真的应该远离批处理文件.
原文链接:https://www.f2er.com/windows/365981.html@echo off setlocal enabledelayedexpansion set x=100 set result=0 for /L %%i in (1,5) do ( set /A result=!x! + %%i echo !result! ) endlocal