大資料<javaSE + Linux精英實訓班>_day_04

來源:互聯網
上載者:User

標籤:while   增量   自增   迴圈語句   java   str   ati   bsp   控制   

1:基礎文法->for迴圈                最常見的迴圈語句. 用在迴圈次數已知的情況下。        for(初始設定式;迴圈條件;動作表達式){            執行語句;            .....        }
/*    for迴圈的編寫格式:    for(初始設定式;迴圈條件;動作表達式){            執行語句;            .....        }    初始設定式:定義變數,作用,控制迴圈的次數    條件:當條件為true的時候,執行迴圈體,當條件為false時,結束迴圈    增量:變數自增的情況*/public class ForDemo{    public static void main(String[] args){        for(int i = 0;i < 11; ++i){            System.out.println(i);        }    }}
/*    利用for迴圈,計算1+4的結果    1 + 2 + 3 + 4 = 10    1+2的和+3    1+2+3的和+4*/public class ForDemo_2{    public static void main(String[] args){        // 定義變數,記錄求和之後的結果        int sum = 0;        for(int i = 0; i <= 4; ++i){            sum = sum + i;        }        System.out.println(sum);    }}
2:基礎文法->迴圈語句do...while                do...while迴圈語句和while迴圈語句類似,文法結構                do{            執行語句;            ...        }while(迴圈條件);

 

大資料<javaSE + Linux精英實訓班>_day_04

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.