vb6.0有没有中途跳出当前for循环,进行下次循环?
例如:PrivateSubcmd1_Click()fori=1to9printinextiendsub如i=5时如何跳出来不打印这个5而继续循环到结束。请详细说清些...
例如:Private Sub cmd1_Click() for i = 1 to 9 print i next iend sub如 i=5时 如何跳出来 不打印这个5 而继续循环到结束。请 详细说清些
展开
3个回答
2013-04-19
展开全部
vb中没有类似c语言的continue这样的语句,如果使用exit for就会直接跳出for循环。楼上的解决方法应该是可行的。不过得修改下,不然会出错。
for i = 1 to 9 if i<>5 then print i ‘语句直接在then后面,不用end if
next i
for i = 1 to 9 if i<>5 then print i ‘语句直接在then后面,不用end if
next i
展开全部
可以用Goto语句来实现,例如:
Private Sub cmd1_Click()
For i = 1 to 9
If i = 5 Then Goto Continue
Print i
Continue : '直接跳过Print i 了,注意冒号
Next i
End Sub
Private Sub cmd1_Click()
For i = 1 to 9
If i = 5 Then Goto Continue
Print i
Continue : '直接跳过Print i 了,注意冒号
Next i
End Sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-04-19
展开全部
for i = 1 to 9 if i<>5 then print i end if next iend sub 这样如何?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询