按键精灵怎么设置数字自动加1? 比如只循环一次的情况下第一次运行输入数字20第二次运行是21

2024-12-01 14:23:29
推荐回答(1个)
回答(1):

i=20
do
if i<100 then
saystring i
i=i+1
else
exit do
end if
loop