程序在C ++中找到系列2、4、3、4、15…的第N个术语

在本教程中,我们将讨论一个程序来查找系列2、4、3、4、15的第N个术语。

为此,我们将提供一个号码。我们的任务是在特定位置找到给定系列的术语。

示例

#include <iostream>

using namespace std;

//计算给定序列的第n个项

int nthTerm(int N) {

   return (N * ((N % 2) + (N % 3)));

}

int main() {

   int N = 5;

   cout << "Nth term = "

   << nthTerm(N);

   return 0;

}

输出结果

Nth term = 15

以上是 程序在C ++中找到系列2、4、3、4、15…的第N个术语 的全部内容, 来源链接: utcz.com/z/316780.html

回到顶部