Board logo

標題: for 迴圈 (三) [打印本頁]

作者: tonyh    時間: 2015-5-1 19:55     標題: for 迴圈 (三)

本帖最後由 tonyh 於 2015-5-1 20:18 編輯

利用for迴圈, 在畫面上直列顯示100以內所有2的倍數.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=0; i<=100; i+=2)
  7.         cout<<i<<endl;  
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

作者: 陳思惟    時間: 2015-5-1 20:10

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

作者: 曾挺桂    時間: 2015-5-1 20:10

本帖最後由 tonyh 於 2015-5-1 20:17 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=0; i<=100; i+=2)
  7.            cout<<i<<endl;
  8.     system("pause");
  9.     return 0;                 
  10. }
複製代碼

作者: 林侑成    時間: 2015-5-1 20:11

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

作者: 沈子耕    時間: 2015-5-1 20:13

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





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