📜  七边形数

📅  最后修改于: 2021-04-26 19:34:52             🧑  作者: Mango

给定数字n,任务是找到第N个七边形数字。七边形数字代表七边形,并且属于数字。七边形有七个角度,七个顶点和七个边的多边形。
例子 :

七边形的

很少有七角形数是:
1,7,18,34,55,81,112,148,189,235……..
计算第N个七边形数的公式:

\begin{math}  Hep_{n}=((5*n*n)-3*n)/2 \end{math}

C++
// C++ program to find the
// nth Heptagonal number
#include 
using namespace std;
 
// Function to return Nth Heptagonal
// number
int heptagonalNumber(int n)
{
    return ((5 * n * n) - (3 * n)) / 2;
}
 
// Drivers Code
int main()
{
 
    int n = 2;
    cout << heptagonalNumber(n) << endl;
    n = 15;
    cout << heptagonalNumber(n) << endl;
 
    return 0;
}


Java
// Java program to find the
// nth Heptagonal number
import java.io.*;
 
class GFG
{
// Function to return
// Nth Heptagonal number
static int heptagonalNumber(int n)
{
    return ((5 * n * n) - (3 * n)) / 2;
}
 
// Driver Code
public static void main (String[] args)
{
    int n = 2;
    System.out.println(heptagonalNumber(n));
    n = 15;
    System.out.println(heptagonalNumber(n));
}
}
 
// This code is contributed by anuj_67.


Python3
# Program to find nth
# Heptagonal number
 
# Function to find
# nth Heptagonal number
def heptagonalNumber(n) :
     
    # Formula to calculate
    # nth Heptagonal number
    return ((5 * n * n) -
            (3 * n)) // 2
 
# Driver Code
if __name__ == '__main__' :
    n = 2
    print(heptagonalNumber(n))
    n = 15
    print(heptagonalNumber(n))
                 
# This code is contributed
# by ajit


C#
// C# program to find the
// nth Heptagonal number
using System;
 
class GFG
{
// Function to return
// Nth Heptagonal number
static int heptagonalNumber(int n)
{
    return ((5 * n * n) -
            (3 * n)) / 2;
}
 
// Driver Code
public static void Main ()
{
    int n = 2;
    Console.WriteLine(heptagonalNumber(n));
    n = 15;
    Console.WriteLine(heptagonalNumber(n));
}
}
 
// This code is contributed by anuj_67.


PHP


Javascript


输出 :
7
540

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