Board logo

標題: while 迴圈(一) [打印本頁]

作者: 歐柏罕    時間: 2017-12-16 17:15     標題: while 迴圈(一)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     // for(初始值;條件;運算方式)
  7.     //for(int i=0;i<=10;i++) //i++ => i=i+1  i-- => i=i-1         i=i/1
  8.     //{
  9.             //cout << "i" << endl; // 印出字串
  10.     //       cout << i << endl;   // 印出變數
  11.     //}
  12.    
  13.     //while迴圈的架構
  14.     //while(/*條件*/)
  15.     //{
  16.          //條件成立才執行,不成立則全部忽略     
  17.     //}
  18.    
  19.     int count=0;
  20.     while(count <= 10)//條件,條件成立才會進入迴圈
  21.     {
  22.          
  23.            cout << count << endl;
  24.             count++;
  25.     }
  26.    
  27.     system("pause");
  28.     return 0;
  29. }
複製代碼

作者: 蔡佳承    時間: 2017-12-16 17:17

此帖僅作者可見
作者: 戴嘉禾    時間: 2017-12-16 17:17

此帖僅作者可見
作者: 顏詢    時間: 2017-12-16 17:20

此帖僅作者可見
作者: 佳    時間: 2017-12-16 17:25

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2