按键精灵循环一定次数调用子程序

2024-11-22 15:50:04
推荐回答(2个)
回答1:

可以用iF完成啊, i=1 do if i=1 then Gosub 子程序1 ElseIf i=2 then Gosub 子程序2 ElseIf l=3 then Gosub 子程序3 End If loop 以此类推

回答2:

ture=0
n=0
if n=ture then
call a
end if
sub a
i=0
while i<30
call b
i=i+1
wend
end sub
sub b
MessageBox ""
end sub