vb中if循环如何嵌套?

2024-12-26 00:49:45
推荐回答(1个)
回答1:

随便嵌套,只要没有交叉就可以,具体的有下面几种:
if xxxxx then
for i= a to b
……
next i
……
end if
for i=a to b
if xxxxx then
……
end if
next i

if xxxxx then
do
……
loop while xxxxx
……
end if
其他比如
if xxxx then
while xxxx
end if
wend
是不允许的,因为出现了语句交叉