Lua初识(4)_判断语句

Lua初识(4)_判断语句,第1张

概述lua中的判读语句三个关键字 if, else, elseif, end判读语句的三种格式:一、、if 表达式 then 语句块 end 二、if 表达式 then 语句块1 else 语句块2end三、只能有一个if和elseif 表达式1 then 语句块1elseif 表达式2 then语句块2elseif 表达式3 then语句块3。。
lua中的判读语句三个关键字 if,else, elseif, end判读语句的三种格式:一、、if 表达式 then 语句块 end 二、if 表达式 then	语句块1	else   语句块2end三、只能有一个if和elseif 表达式1 then  语句块1elseif 表达式2 then语句块2elseif 表达式3 then语句块3。。。else	语句块NendFor example One:function ceshi(num)	if(num == "hello") then		print("hello")	else		print("num:"__num)	endenda = "lala"ceshi(a)For example Two:local today = 1if today == 1 then	print(“Today is Monday!”)elseif today == 2 then	print(“Today is Tuesday!”)elseif today == 3 then	print(“Today is Wednesday!”)elseif today == 4 then	print(“Today is Thursday!”)elseif today == 5 then	print(“Today is Saturday!”)elseif today == 6 or today == 7 then	print(“Rest!”)else	print(“None!”)end										   
总结

以上是内存溢出为你收集整理的Lua初识(4)_判断语句全部内容,希望文章能够帮你解决Lua初识(4)_判断语句所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1240709.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存