7.条件分支语句

  1. 7.条件分支语句
    1. 7.1 知识点
      1. 单分支if
      2. 双分支if
      3. 多分支if
      4. 多分支switch
    2. 7.2 知识点代码

7.条件分支语句


7.1 知识点

单分支if

  • 单分支if语法:
--if 条件 then
--.....
--end
a = 10
if a > 5 then
print("123")
end
if a >= 3 and a <= 10 then
print("3到10之间")
end

双分支if

  • 双分支if语法:
-- if 条件 then
-- .....
-- else
-- .....
-- end
if a < 5 then
print("123")
else
print("321")
end

多分支if

  • 多分支if语法:
-- if 条件 then
-- .....
-- elseif 条件 then
-- ....
-- elseif 条件 then
-- ....
-- else
-- .....
-- end
  • 注意:多分支if语法中的elseif一定要连着写,否则报错。
if a < 5 then
print("123")
elseif a == 6 then
print("6")
elseif a == 7 then
print("7")
elseif a == 8 then
print("8")
elseif a == 9 then
print("9")
else
print("other")
end

多分支switch

  • lua不支持switch语法,需要自己实现。

7.2 知识点代码

print("**********条件分支语句************")

print("**********知识点一 单分支if************")
-- 单分支if语法:
--if 条件 then
--.....
--end
a = 10
if a > 5 then
    print("123")
end
if a >= 3 and a <= 10 then
    print("3到10之间")
end

print("**********知识点二 双分支if************")
-- 双分支if语法:
-- if 条件 then
-- .....
-- else
-- .....
-- end
if a < 5 then
    print("123")
else
    print("321")
end

print("**********知识点三 多分支if************")
-- 多分支if语法:
-- if 条件 then
-- .....
-- elseif 条件 then
-- ....
-- elseif 条件 then
-- ....
-- else
-- .....
-- end
--注意:多分支if语法中的elseif一定要连着写 否则报错
if a < 5 then
    print("123")

elseif a == 6 then
    print("6")
elseif a == 7 then
    print("7")
elseif a == 8 then
    print("8")
elseif a == 9 then
    print("9")
else
    print("other")
end

print("**********知识点三 多分支switch************")
--lua不支持switch语法  需要自己实现


转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 785293209@qq.com

×

喜欢就点赞,疼爱就打赏