返回列表 發帖

for 迴圈 (二)

本帖最後由 tonyh 於 2011-10-8 17:24 編輯

利用 for 迴圈, 算出 1 到 10 的總合. (1+2+3+...+10)
本帖隱藏的內容需要回復才可以瀏覽

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

TOP

本帖最後由 劉漢文 於 2011-10-8 17:22 編輯
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int number =0;
  6.     int i;
  7.     for(i=1; i<11; i+=1)
  8.     {
  9.             number = number+i;
  10.     }
  11.     cout<<number;
  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. for(int i=1; i<11; i=i+1)
  7. {
  8.   total = total+i;
  9. }
  10. cout<<total<<endl;   
  11. system("pause");   
  12. return 0;      

  13. }
複製代碼

TOP

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

TOP

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

TOP

返回列表