1、结构方面
(1) a. if condition=true then sentence
b. if condition1= true then
sentence1
elseif condition2=true then
sentence2
elseif condition3=true then
sentence3
else
sentence4
end if 'if语句块
c.if condition1= true then
sentence1
else
if condition2=true then
sentence2
else
if condition3=true then
sentence3
else
sentence4
end if
end if
end if
'if嵌套
(2)select case
select case expression
case exp1
sentence1
case exp2
sentence2
.............
end select