Board logo

標題: 顯示3的倍數,3~15 [打印本頁]

作者: may    時間: 2013-8-31 17:14     標題: 顯示3的倍數,3~15

顯示3-15,用for迴圈
作者: 張彥承    時間: 2013-8-31 17:14

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     for(int i=3;i<=15;i++)
  7.     {
  8.    
  9.           cout<< i <<endl;   
  10.    
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 張彥承    時間: 2013-8-31 17:16

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     for(int i=3;i<=15;i+=3)
  7.     {
  8.    
  9.           cout<< i <<endl;   
  10.    
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 謝典育    時間: 2013-8-31 17:17

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=3;i<=16;i+=3)
  7.     {
  8.     cout<<i<<endl;   
  9.     }

  10.     system("pause");   
  11.     return 0;   
  12. }
複製代碼

作者: 李彥彤    時間: 2013-8-31 17:17

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     for(int j=3;j<=15;j+=3)
  7.     {
  8.    
  9.           cout<< j <<endl;   
  10.    
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 張峻瑋    時間: 2013-8-31 17:24

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     for(int i=1;i<=15;i+=3)
  7.     {
  8.         cout<< i+2 <<endl;   
  9.     }
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 張峻瑋    時間: 2013-8-31 17:27

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     for(int i=5;i<=18;i+=3)
  7.     {
  8.         cout<< i-2 <<endl;   
  9.     }
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 張彥承    時間: 2013-8-31 17:38

  1. #include <iostream>

  2. #include <cstdlib>

  3. using namespace std;



  4. int main()

  5. {

  6.     for(int i=1;i<=5;i++)

  7.     {

  8.    

  9.           cout<< "谷哥人"<<i<<"號" <<endl;   

  10.    

  11.     }

  12.     system("pause");

  13.     return 0;

  14. }
複製代碼





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