用 C++ 查找卡伦数的程序


在该教程中,我们将讨论一个用于查找卡伦数的程序。

为此,我们将提供一个整数。我们的任务是使用以下公式在该位置查找卡伦数:

2n* n + 1

示例

 在线演示

#include <bits/stdc++.h>
using namespace std;
//finding the nth cullen number
unsigned get_cullen(unsigned n){
   return (1 << n) * n + 1;
}
int main(){
   int n = 2;
   cout << get_cullen(n);
   return 0;
}

输出

9

更新日期:09-Sep-2020

129 浏览次数

开启您的 职业生涯

学完课程即可获得认证

开始学习
广告