VB程序里的循环结构怎么写?for循环和do while循环

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/02 13:51:50
VB程序里的循环结构怎么写?for循环和do while循环

VB程序里的循环结构怎么写?for循环和do while循环
VB程序里的循环结构怎么写?
for循环和do while循环

VB程序里的循环结构怎么写?for循环和do while循环
Dim i As Integer
for i=0 to 9'从0开始到9结束
next
msgbox i
Do While i >0'大于0就循环,否则结束
i=i - 1
Loop
MsgBox a