Board logo

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

作者: tonyh    時間: 2017-10-25 16:57     標題: for 迴圈 (三)

本帖最後由 tonyh 於 2017-10-25 17:05 編輯

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

作者: 蒙鎧柔    時間: 2017-10-25 17:07

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

作者: 黃宇瑄    時間: 2017-10-25 17:11

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

作者: 黃宇綸    時間: 2017-10-25 17:12

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

作者: 李沛昂    時間: 2017-10-28 11:28

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





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