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

C++에서 시리즈 0, 10, 30, 60, 99, 150, 210, 280...의 N번째 항을 찾는 프로그램


이 튜토리얼에서는 시리즈 0, 10, 30,60, 99, 150, 210, 280...

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

예시

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

출력

60