gpt4 book ai didi

variables - for 循环和变量

转载 作者:行者123 更新时间:2023-12-04 04:53:07 25 4
gpt4 key购买 nike

在我的示例中,如何将循环数定义为变量以将其更改为循环之外的数,而不是此处的数字 10?

我的意思是可以这样写

: @echo off

set Looping_number=10 or anything else

FOR /L %%A IN (1,1,Looping_number) DO call :doit %%A
goto :eof

:doit
set pad=00%1
set num=%pad:~-2%
@set var1=var1.exe
@set var2=C:\...\...\... .txt
@set output=C:\....\output\%num%
Mkdir %output%
%var1% %var2% %Results%
goto :eof

这个对我不起作用?
有什么建议吗?

最佳答案

您需要输入 %引用变量时在变量周围加上符号:

set Looping_number=10 or anything else

FOR /L %%A IN (1,1,%Looping_number%) DO call :doit %%A
goto :eof

关于variables - for 循环和变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17128845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com