健壮大雁

文章
5
资源
0
加入时间
2年10月21天

05 Lua基础-函数条件判断语句

1. If 判断语句then 和 end 结束-- If 条件判断语句local a = 12;if a == 12 then print("True");end1.1 else if-- If 条件判断语句local a = 0if a == 12 then print("True")elseif (a == 0) then ...