我想用 vb 写个for循环
If a < 10 Then
a= 10
ElseIf a < 15 Then
a= 15
ElseIf a < 20 Then
a= 20
End If
就这么一直循环下去,这个该怎么写?
------解决方案--------------------------------------------------------
for(int a=0;i <20;i=i+5)
{
}
------解决方案--------------------------------------------------------
for(int i=10;i <1000;i=i+5)
{
if(a <i)
{
a=i;
break;
}
}
------解决方案--------------------------------------------------------
for(int i=0;i <20;i=i+5)
{
}
------解决方案--------------------------------------------------------
up
------解决方案--------------------------------------------------------
for i as Integer from 10 to ??? step 5
if a <10 then
a=10
exit for
end if
if a> =i and a <i+5 then
a=i+5
end if
next
------解决方案--------------------------------------------------------
lz想要死循环?简单,在for循环外加多个while判断,只要判断一直为真(或假),就可以死循环了。。。