返回列表 發帖

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. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表