Windows Powershell Do While 迴圈_PowerShell

來源:互聯網
上載者:User

繼續與終止迴圈的條件

do-while()會先執行再去判斷,能保證迴圈至少執行一次。

複製代碼 代碼如下:

PS C:Powershell> do { $n=Read-Host } while( $n -ne 0)
10
100
99
2012
世界末日
為什麼不退出
因為條件不滿足
怎樣才能滿足
請輸入一個0,試一試
0
PS C:Powershell>

單獨使用While

複製代碼 代碼如下:

$n=5
while($n -gt 0)
{
    $n
    $n=$n-1
}
5
4
3
2
1

終止當前迴圈

使用continue關鍵字,可是終止當前迴圈,跳過continue後其它語句,重新下一次迴圈。

複製代碼 代碼如下:

$n=1
while($n -lt 6)
{
    if($n -eq 4)
    {
        $n=$n+1
        continue
 
    }
    else
    {
        $n
    }
    $n=$n+1
}
1
2
3
5

跳出迴圈語句

跳出迴圈語句使用break關鍵字

複製代碼 代碼如下:

$n=1
while($n -lt 6)
{
    if($n -eq 4)
    {
        break
    }
    $n
    $n++
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.