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

返回列表