返回列表 發帖
  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

返回列表