本文共 208 字,大约阅读时间需要 1 分钟。
01:在条件为 true 时执行指定程序代码,在条件为 false 时执行其他指定代码。
a=10--如果 那么if a thenprint(666)elseprint(233)end
多个条件判断
a = 300;if( a == 100 ) thenprint(66)elseif a==200 thenprint(888)elseif a==300 thenprint(777)elseprint(99)end
转载地址:http://bnrxo.baihongyu.com/