Lua——循环和流程控制(if,for,while,break,goto,repeat...until)
文章目录一、if语句1.基本语法知识2.演示示例二、循环语句1.while循环2.for循环3.repeadt...until循环一、if语句1.基本语法知识if语句要注意,在Lua里面0为true,其他为假语法为:if("条件")then"操作语句"elseif(条件)then"操作语句"else"操作语句"end2.演示示例示例:if(0)thenprint("0为true")elseprin