zh159
金牌会员
     
积分 3687
发帖 1467
注册 2005-8-8
状态 离线
|
『第 17 楼』:
使用 LLM 解释/回答一下
Originally posted by mwh79 at 2006-11-30 18:31:
我测试下来,是一样的,,,,我其实想实现的是,,不是显示,,而是,只从35-100中间的数来读去,,,,1-34不读,,,这样可以做到马上就可以得到数据,不需要判断了!
for /l %%i in (35,1,100) do echo %%i
Originally posted by mwh79 at 2006-11-30 18:31:
I tested, it's the same,,,,What I actually want to achieve is, not to display, but to only read numbers from 35 to 100,,,,,not reading 1-34, so that I can get the data immediately without judgment!
for /l %%i in (35,1,100) do echo %%i
|
|