vb6.0 循环语句 退出循环
发布网友
发布时间:2022-09-24 06:43
我来回答
共5个回答
热心网友
时间:2023-09-12 01:37
for a=1to 100
.....
if a=25 then ___exit for___
.....
next a
\在程序中添加一语句使程序不执行if到next a之间的语句
直接执行 next a 进入下一次循环!!!!!
a=100
do while a<=100
.....
if a/25=int(a/25) then _exit do_____
.....
a=a-1
loop
热心网友
时间:2023-09-12 01:37
for a=1to 100
.....
if a=25 then ___exit for___
.....
next a
\在程序中添加一语句使程序不执行if到next a之间的语句
直接执行 next a 进入下一次循环!!!!!
a=100
do while a<=100
.....
if a/25=int(a/25) then _exit do_____
.....
a=a-1
loop
热心网友
时间:2023-09-12 01:37
- - vb里面没有continue语句 不过 可以这样实现试试
如
for a=1 to 100
.....
if a=25 then goto 1
.....
1:
next a
a=100
do while a<=100
.....
if a/25=int(a/25) then goto 1
a=a-1
loop
1:
热心网友
时间:2023-09-12 01:38
-
-
vb里面没有continue语句
不过
可以这样实现试试
如
for
a=1
to
100
.....
if
a=25
then
goto
1
.....
1:
next
a
a=100
do
while
a<=100
.....
if
a/25=int(a/25)
then
goto
1
a=a-1
loop
1:
热心网友
时间:2023-09-12 01:37
- - vb里面没有continue语句 不过 可以这样实现试试
如
for a=1 to 100
.....
if a=25 then goto 1
.....
1:
next a
a=100
do while a<=100
.....
if a/25=int(a/25) then goto 1
a=a-1
loop
1:
热心网友
时间:2023-09-12 01:38
只要if的条件不满足,自然就不执行了。
热心网友
时间:2023-09-12 01:38
-
-
vb里面没有continue语句
不过
可以这样实现试试
如
for
a=1
to
100
.....
if
a=25
then
goto
1
.....
1:
next
a
a=100
do
while
a<=100
.....
if
a/25=int(a/25)
then
goto
1
a=a-1
loop
1:
热心网友
时间:2023-09-12 01:38
只要if的条件不满足,自然就不执行了。
热心网友
时间:2023-09-12 01:39
if a=25 then ______
填exit if
下一个同上
热心网友
时间:2023-09-12 01:39
if a=25 then ______
填exit if
下一个同上