在C ++中找到系列0、9、22、39、60、85、114、147等的第N个项的程序
为此,我们将提供一个号码。我们的任务是在特定位置找到给定系列的术语。
示例
#include <iostream> #include <math.h> using namespace std; //计算系列的第n个项 int nthTerm(int n) { return 2 * pow(n, 2) + 3 * n - 5; } int main() { int N = 4; cout << nthTerm(N) << endl; return 0; }
输出结果
39