Board logo

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

作者: 王瑞喻    時間: 2020-7-16 16:35     標題: while 迴圈 (一)

利用while迴圈, 垂直列出 1~20.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;  //初始值
  7.     while(i<=20)    //持續運作的條件
  8.     {
  9.         cout<<i<<endl;
  10.         i++;   
  11.     }
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 李柏穎    時間: 2020-7-18 16:33

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int i=1;
  9.     while(i<=20)
  10.     {
  11.         cout<<i<<endl;
  12.         i++;
  13.     }
  14.     system("pause");
  15.     goto re;
  16.     return 0;
  17. }
複製代碼

作者: 董定宇    時間: 2020-7-18 17:31

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;  
  7.     while(i<=20)
  8.     {
  9.         cout<<i<<endl;
  10.         i++;   
  11.     }
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 呂尚霖    時間: 2020-7-18 17:31

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;  //初始值
  7.     while(i<=20)    //持續運作的條件
  8.     {
  9.         cout<<i<<endl;
  10.         i++;   
  11.     }
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 鐘彥博    時間: 2020-7-18 17:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;
  7.     while(i<=20)
  8.     {
  9.                 cout<<i<<endl;
  10.                 i++;
  11.     }
  12.     system("pause");
  13.     return 0;
  14.    
  15. }
複製代碼

作者: 李柏穎    時間: 2020-7-25 15:55

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=20; i++)
  7.     cout<<i<<endl;
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

作者: 董定宇    時間: 2020-7-25 15:57

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    /* int i=1;  
  7.     while(i<=20)
  8.     {
  9.         cout<<i<<endl;
  10.         i++;   
  11.     }*/
  12.     for(int x=1;x<=20;x++)
  13.     cout <<x<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 潘堉恩    時間: 2020-7-25 15:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;
  7.     while(i<=20)
  8.     {
  9.          cout<<i<<endl;
  10.          i++;
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 呂尚霖    時間: 2020-7-25 16:04

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int i=1;
  7.     while(i<=20)
  8.     {
  9.         cout<<i<<endl;
  10.         i++;
  11.     }
  12.     for(int j=1; j<=20; j++)
  13.     {
  14.         cout<<j<<endl;      
  15.     }
  16.     system("pause");
  17.     return 0;      
  18.    
  19. }
複製代碼

作者: 鐘彥博    時間: 2020-7-25 16:04

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int i=1;
  7.    while(i<=20)
  8.    {
  9.        cout<<i<<endl;
  10.        i++;
  11.    }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼





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