B
BigMan
I would like the variable %I to iterate from 0 to %C-1 rather than from 1 to
%C. Note that I cannot change the range of %C to0-9!
for /L %%C in (1,1,10) do (
for /L %%I in (1,1,%%C) do (
echo %%C %%I
)
)
What should I do?
%C. Note that I cannot change the range of %C to0-9!
for /L %%C in (1,1,10) do (
for /L %%I in (1,1,%%C) do (
echo %%C %%I
)
)
What should I do?