返回列表 發帖

while 迴圈(一)

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

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表