--if语句 if [判断条件] then --条件满足执行的语句 end if; -- if ...else... if [判断条件] then ----条件满足执行的语句 else --不满足条件的语句 end if; --if...elsif...else if [判断条件] then ----条件满足执行的语句 elsif [判断条件] then --条件满足执行的语句 else --不满足条件的语句 end if; --case条件判断语句 case [需要判断的变量] when [变…