Lua 循環(huán)嵌套
Lua 編程語言中允許循環(huán)中嵌入循環(huán)。以下實例演示了 Lua 循環(huán)嵌套的應用。
語法
Lua 編程語言中 for 循環(huán)嵌套語法格式:
for init,max/min value, increment do for init,max/min value, increment do statements end statements end
Lua 編程語言中 while 循環(huán)嵌套語法格式:
while(condition) do while(condition) do statements end statements end
Lua 編程語言中 repeat...until 循環(huán)嵌套語法格式:
repeat statements repeat statements until( condition ) until( condition )
除了以上同類型循環(huán)嵌套外,我們還可以使用不同的循環(huán)類型來嵌套,如 for 循環(huán)體中嵌套 while 循環(huán)。
實例
以下實例使用了for循環(huán)嵌套:
j =2 for i=2,10 do for j=2,(i/j) , 2 do if(not(i%j)) then break end if(j > (i/j))then print("i 的值為:",i) end end end
以上代碼執(zhí)行結果為:
i 的值為: 8 i 的值為: 9 i 的值為: 10
更多建議: