欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

關(guān) 鍵 字 參 考


While...WEnd

基于 While 表達式循環(huán).

While <表達式>
    語句
    ...
WEnd

參 數(shù)

表達式 如果表達式為 true(條件存在), 則連續(xù)執(zhí)行 Wend 循環(huán)語句, 直到表達式為 false(條件消失).

備 注

While...WEnd 語句允許嵌套使用.
表達式在循環(huán)前測試, 因此循環(huán)將執(zhí)行 0 次或多次.
要創(chuàng)建一個無限循環(huán), 你可以用一個非 0 數(shù)作為表達式.

相 關(guān) 函 數(shù)

ContinueLoop, ExitLoop

函 數(shù) 示 例


Local $i = 0
While $i <= 10
    MsgBox(0, "當(dāng)前 $i 值為:", $i)
    $i = $i + 1
WEnd

provider with jb51.net (unicode)