小弟想请教如何从For...Next循环里跳过本次循环继续下一轮循环,网上说用goto,可是我用了goto之后提示:The test run cannot continue due to a syntax error.缺少语句,goto。。。。
代码如下:
'使用一
For i = 1 to 9
If i = 5 Then
Goto Continue
end if
Print i
Continue:
next
'使用二
Dim a
a = 1
If a = 1 Then GoTo Line2 Else GoTo Line1
Line1:
print "执行了Line1"
Line2:
print "执行了Line2"