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

2024年11月22日 15:50
有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