返回列表 發帖

C++第七題:計算 1 + 2 + ... + n = ﹖。

C++第七題:計算 1 + 2 + ... + n = ﹖。
我是小紅老師,小紅老師是我!!

  1. /**7.計算1+2+3+.....+n=?**/
  2. #include<iostream>
  3. using namespace std;

  4. int main(){
  5.    int n , total ;
  6.    total=0;
  7.    
  8.    cout << "Please enter numberN: " << endl;

  9.    while(cin >> n){
  10.         for(int i=1;i<=n;i++)
  11.         {
  12.               total=total+i;   
  13.                
  14.         }
  15.         cout << total << endl;
  16.    }
  17.   system("Pause");
  18.   return 0;  
  19.    
  20. }
複製代碼
張雅淳

TOP

本帖最後由 chuangjoy 於 2010-2-27 11:23 編輯
  1. /*7.計算1+2+3+.....+n=?*/
  2. #include <iostream>
  3. #include <cstdlib>
  4. using namespace std;
  5. int main(void){
  6.     int num = 0;
  7.     int n;
  8.    
  9.     cout << "請輸入數字" << endl;
  10.     cin >> n;
  11.      
  12.     for (int i=1; i<n; i++){
  13.         num = num + i;
  14.         cout << num << endl;
  15.         }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

晴空嵐月:第6題DEV C++ 這個不是活的~~~不太會寫

本帖最後由 p17johnny 於 2010-2-27 11:28 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.     int num = 0;
  6.     int n=5;

  7.         for (int i=1; i<n; i++){
  8.         num = num + i;
  9.         cout << num << endl;
  10.         }
  11. system("pause");
  12. return 0;
  13. }
複製代碼
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     int n;
  7.     int num = 0;
  8.     cout << "請輸入一個數字:" << endl;
  9.     cin >> n;
  10.     for(int i = 1; i <= n; i++){
  11.             num = num + i;
  12.     }
  13.     cout << "1 + 2 + 3 + ...... + n = " << num << endl;
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>
  4. using namespace std;
  5. int main(void){
  6.    
  7.    int n;
  8.    cin >> n ;
  9.    int x = (n+1) * (n-1+1);
  10.    int xx = x / 2;
  11.    cout << xx << endl;
  12.     system("pause");
  13.     return 0 ;
  14. }   
複製代碼

TOP

回復 1# stephen
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>
  4. using namespace std;
  5. int main(void){
  6.    
  7.     int n;
  8.     cin >> n;
  9.     int x = (1+n)*(n-1+1);
  10.     int y = x/2;
  11.     cout << y << endl;
  12.       
  13.     system("pause");

  14.     return 0;

  15. }
複製代碼
明輝

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>
  4. using namespace std;
  5. int main(void){
  6.    
  7.    for(int x = 65 ;x < 91 ; x++){
  8.            cout << (char)x << endl;
  9.            }
  10.            for(int y =97; y < 123; y++){
  11.                    cout << (char)y << endl;
  12.                    }
  13.     system("pause");
  14.     return 0 ;
  15. }   
複製代碼

TOP

返回列表