📜  七角形数

📅  最后修改于: 2021-04-26 18:08:02             🧑  作者: Mango

给定数字N ,任务是找到N七角形数。

例子:

方法:第N个七角形数由下式给出:

  • 侧多边形的第N个项= \frac{((s-2)n^2 - (s-4)n)}{2}
  • 因此,第70个多边形的第N个项是

下面是上述方法的实现:

C++
// C++ program for above approach
#include 
using namespace std;
 
// Finding the nth heptacontagon number
int heptacontagonNum(int n)
{
    return (68 * n * n - 66 * n) / 2;
}
 
// Driver code
int main()
{
    int N = 3;
     
    cout << "3rd heptacontagon Number is = "
         << heptacontagonNum(N);
 
    return 0;
}
 
// This code is contributed by shivanisinghss2110


C
// C program for above approach
#include 
#include 
 
// Finding the nth heptacontagon Number
int heptacontagonNum(int n)
{
    return (68 * n * n - 66 * n) / 2;
}
 
// Driver code
int main()
{
    int N = 3;
    printf("3rd heptacontagon Number is = %d",
           heptacontagonNum(N));
 
    return 0;
}


Java
// Java program for the above approach
class GFG{
 
// Finding the nth heptacontagon number
static int heptacontagonNum(int n)
{
    return (68 * n * n - 66 * n) / 2;
}
 
// Driver Code
public static void main(String[] args)
{
    int N = 3;
    System.out.println("3rd heptacontagon Number is = " +
                                    heptacontagonNum(N));
}
}
 
// This code is contributed by rutvik_56


Python3
# Python3 program for above approach
 
# Finding the nth heptacontagon Number
def heptacontagonNum(n):
 
    return (68 * n * n - 66 * n) // 2;
 
# Driver code
N = 3;
print("3rd heptacontagon Number is =",
                 heptacontagonNum(N));
 
# This code is contributed by Akanksha_Rai


C#
// C# program for the above approach
using System;
class GFG{
 
// Finding the nth heptacontagon number
static int heptacontagonNum(int n)
{
    return (68 * n * n - 66 * n) / 2;
}
 
// Driver Code
public static void Main()
{
    int N = 3;
    Console.Write("3rd heptacontagon Number is = " +
                               heptacontagonNum(N));
}
}
 
// This code is contributed by Akanksha_Rai


Javascript


输出:
3rd heptacontagon Number is = 207

参考: https //en.wikipedia.org/wiki/Heptacontagon