返回列表 發帖

[隋棠測驗] 33~66 所有3的倍數總和

33+36+39+...+63+66=?

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.   int total = 0;
  7.   for (int i=33 ; i<=66 ; i= i+3 )
  8.   total = total + i;
  9.   {
  10.       cout << "33+36+39+...+66= " << 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.    
  7.     int j=0;
  8.     for(int i=33;i<=66;i+=3)
  9.     {
  10.         j=j+i ;
  11.     }        
  12.     cout<<"33+36+39+...+63+66="<< 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=33;i<=66;i=i+3)
  8.       total=total+i;
  9.   cout<<"33~66 所有3的倍數總和等於"<<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 total=0;
  7.     for(int i=33; i<=66; i+=3)
  8.     {
  9.         total=total+i;
  10.     }
  11.     cout<<"33~66的倍數總和:"<<total<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. { int total=0;
  6. for( int i=33;i<=66;i+=3)
  7. {
  8.    total=total+i;
  9.   }
  10.    cout<<"33~66's double total is:"<<total<<endl;                  

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

TOP

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

TOP

返回列表