Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 시리즈 1, 6, 17, 34, 56, 86, 121, 162, …의 N번째 항을 찾는 프로그램


이 튜토리얼에서는 시리즈 1, 6, 17,34, 56, 86, 121, 162, …의 N번째 항을 찾는 프로그램에 대해 논의할 것입니다.

이를 위해 번호가 제공됩니다. 우리의 임무는 특정 위치에서 주어진 시리즈에 대한 용어를 찾는 것입니다.

#include <iostream>
#include <math.h>
using namespace std;
//calculating nth term of given series
int nthTerm(int n) {
   return 3 * pow(n, 2) - 4 * n + 2;
}
int main() {
   int N = 4;
   cout << nthTerm(N) << endl;
   return 0;
}

출력

34