Board logo

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

作者: 王瑞喻    時間: 2020-7-25 15:57     標題: while 迴圈 (二)

試以 while 迴圈, 垂直列出 100 以內所有 3 的倍數.
作者: 李柏穎    時間: 2020-7-25 15:59

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

作者: 董定宇    時間: 2020-7-25 16:02

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

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

本帖最後由 鐘彥博 於 2020-7-25 16:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int i=0;
  7.    while(i<=100)
  8.    {
  9.        cout<<i<<endl;
  10.        i+=3;
  11.    }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 潘堉恩    時間: 2020-7-25 16:11

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

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

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





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