#46139: 推薦一首歌 im alive


1121226@stu.wghs.tp.edu.tw (Arthur✨EC)

學校 : 臺北市私立薇閣高級中學
編號 : 252772
來源 : [60.248.154.139]
最後登入時間 :
2025-08-21 12:59:45

#include <bits/stdc++.h>
using namespace std;
int n(int x){ // 自創一個函式n
    if(x==1) return 1; // 如果x=1 就回傳1
    else return n(x-1)+x*x-x+1; // 如果x不等於1 就回傳n(x-1)+x*x-x+1
}
int main() {
    int x;
    cin>>x;
    cout<<n(x); // 輸出n(x)
    return 0;
}