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

關(guān) 鍵 字 參 考


ExitLoop

終止 While 或 Do 或 For 循環(huán).

ExitLoop [等級(jí)]

參 數(shù)

等級(jí) [可選參數(shù)] 退出循環(huán)的級(jí)別值. 默認(rèn)為 1(當(dāng)前循環(huán)).

備 注

如果參數(shù)" 等級(jí) "為負(fù)數(shù)或零, 則無(wú)任何作用.

ExitLoop 將跳出 While, Do 或 For 循環(huán).
如果需要同時(shí)在環(huán)路測(cè)試和循環(huán)體中檢查錯(cuò)誤, 則 ExitLoop 非常有用.

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

ContinueLoop, Exit, For, Do, While

函 數(shù) 示 例


Local $sum = 0
While 1 ;除非調(diào)用 ExitLoop, 否則無(wú)限循環(huán)
    Local $ans = InputBox("運(yùn)行次數(shù) = " & $sum, _
            "   輸入一個(gè)正數(shù).  (負(fù)數(shù)將退出)")
    If $ans < 0 Then ExitLoop
    $sum = $sum + $ans
WEnd
MsgBox(0, "循環(huán)次數(shù): ", $sum)

provider with jb51.net (unicode)