lua中没有switch语句
-
单分支
if 条件 then 语句 end
if a>7 then print("123") end
-
双分支
if 条件 then 语句
else 语句 end
if a<7 then print(12) else print(123) end
-
多分支
if 条件 then 语句
elseif 条件 then 语句
elseif 条件 then 语句
…
else 语句 end
if a==7 then print(7) elseif a==9 then print(9) elseif a==11 then print(11) else pirnt(12) end