返回列表 發帖

[隨堂測驗] 計算333~999間所有3的倍數總和

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

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

TOP

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

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

TOP

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

TOP

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

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

TOP

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

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6. int total=0;

  7. for(int i=333;i<=999;i+=3)
  8. total=total+i;
  9. cout<<"333+336+339...999="<<total<<endl;
  10.   system ("pause");
  11.   return 0;   
  12. }
複製代碼

TOP

  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=sum+i;
  10.     }
  11.     cout<<"333~999的3的倍數的總和為: "<<sum<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表