Vbs中If语句和Do...loop语句的用法

2024-11-18 21:34:27
推荐回答(2个)
回答1:

if true then ....else ....
------------------------------
if not true then ....else....
---------------------------------
if true then
....
elseif true then
....
elseif not then
....
else
....
end if
-------------------------------------
--------------------------------------
do
if true then exit do
loop
---------------------------------------
do while true
....
loop
---------------------------------------
do
....
loop while true

回答2:

a=1
If a=1 Then
MsgBox "a=1"
Else
MsgBox "a<茄烂伍颤或>1"
End If
Do
If a<历郑10 Then
a=a+1
Else
Exit Do
End If
MsgBox a
Loop