返回列表 發帖

[作業] for 迴圈

本帖最後由 tonyh 於 2011-10-15 13:35 編輯

利用 for 迴圈, 計算 150 到 250 間 所有 5 的倍數的總合.
本帖隱藏的內容需要回復才可以瀏覽

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

TOP

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

TOP

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

TOP

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

TOP

#include <iostream>
using namespace std;
int main()
{
int t=0;
int i;
for(i=150; i<251; i+=5)
{
t= t+i;
}
cout<<t;   
cout<<endl;   
system("pause");   
return 0;      
}

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int total=0;
  6. for(int i=150; i<250; i=i+5)
  7. {
  8.   total = total+i;
  9. }
  10. cout<<total<<endl;   
  11. system("pause");   
  12. return 0;      

  13. }
複製代碼

TOP

返回列表