If condition Then'-- true blockEnd If '-- next statement |
If condition Then'-- true blockElse '-- false block End If '-- next statement |
If condition-0 Then'-- block-0 ElseIf condition-1 Then '-- block-1 '-- other else-if blocks go here ElseIf condition-n Then '-- block-n Else '-- default block End If '-- next statement |
While condition '-- loop bodyEnd While '-- next statement |