Board logo

標題: [隨堂測驗] 計算333~999間所有3的倍數總和 [打印本頁]

作者: tonyh    時間: 2014-10-18 11:14     標題: [隨堂測驗] 計算333~999間所有3的倍數總和

本帖最後由 tonyh 於 2014-10-18 11:47 編輯

333+336+339+...+996+999=?

[attach]1031[/attach]
本帖隱藏的內容需要回復才可以瀏覽

作者: 李知易    時間: 2014-10-18 11:21

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

作者: 洪振庭    時間: 2014-10-18 11:26

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

作者: 洪振庭    時間: 2014-10-18 11:49

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int a=0;
  7.    for(int i=333;i<=999;i+=3)

  8.        a=a+i;  
  9.    
  10.     cout<<"333+336+339+...+996+999= "<<a<<endl;
  11.      
  12.    system("pause");
  13.    return 0;
  14. }
複製代碼

作者: 李知易    時間: 2014-10-18 11:49

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

作者: 謝瀞儀    時間: 2014-10-18 11:50

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

作者: 李大全    時間: 2014-10-18 11:53

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

作者: 梁和雋    時間: 2014-10-18 11:58

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





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