#17294: c++遞迴解法


d10730416@gapps.fg.tp.edu.tw (Wendy Charng)

學校 : 臺北市立第一女子高級中學
編號 : 95072
來源 : [203.64.52.101]
最後登入時間 :
2019-05-06 12:03:11
a042. 平面圓形切割 -- 許介彥 | From: [220.134.112.22] | 發表日期 : 2019-04-03 23:46

#include <iostream>
using namespace std;

int n, A(int);

int main() {
  while (cin >> n){
    cout << A(n) << endl;
  }
}

int A(int n){
  if (n == 1) return 2;
  else return A(n - 1) + 2 * n - 2;
}
 
ZeroJudge Forum