Board logo

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

作者: 張翼安    時間: 2015-12-19 00:17     標題: while 迴圈 (二)

試以 while 迴圈, 垂直列出 100 以內所有 3 的倍數.
作者: 張健勳    時間: 2015-12-19 11:51

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

作者: 任立宇    時間: 2015-12-19 11:54

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

作者: 張文擇    時間: 2015-12-19 11:57

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

  14.    
  15.       
複製代碼

作者: 蔡季樺    時間: 2015-12-23 16:26

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

作者: 吳承勳    時間: 2015-12-23 16:28

  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 = i + 3;
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 蔡庭豪    時間: 2015-12-23 18:14

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





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