与 for 和 while 循环(它们在循环顶部测试循环条件)不同,Lua编程中的 repeat ... until 循环语言在循环的底部检查其条件。
repeat ... until 循环与while循环相似,不同之处在于,保证do ... while循环至少执行一次。
repeat...until loop - 语法
Lua编程语言中 repeat ... until 循环的语法如下-
repeatstatement(s) until( condition )
repeat...until loop - 流程图
repeat...until loop - 示例
--[ local variable definition --] a=10--[ repeat loop execution --] repeatprint("value of a:", a)a=a + 1 until( a > 15 )
当您构建并执行上述程序时,它将产生以下输出-
value of a: 10 value of a: 11 value of a: 12 value of a: 13 value of a: 14 value of a: 15
Lua 中的 repeat...until 语句函数 - 无涯教程网无涯教程网提供与 for 和 while 循环(它们在循环顶部测试循环条件)不同,Lua编程中的 repeat ... unt...https://www.learnfk.com/lua/lua-repeat-until-loop.html