📜  二十进制六边形数

📅  最后修改于: 2021-04-27 18:54:33             🧑  作者: Mango

给定数字N ,任务是找到N个同六边形数字。

例子:

方法:第N个同六边形数由下式给出:

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

下面是上述方法的实现:

C++
// C++ program for above approach
#include 
using namespace std;
 
// Finding the nth Icosihexagonal Number
int IcosihexagonalNum(int n)
{
    return (24 * n * n - 22 * n) / 2;
}
 
// Driver Code
int main()
{
    int n = 3;
    cout << "3rd Icosihexagonal Number is = "
         << IcosihexagonalNum(n);
 
    return 0;
}
 
// This code is contributed by Code_Mech


C
// C program for above approach
#include 
#include 
 
// Finding the nth Icosihexagonal Number
int IcosihexagonalNum(int n)
{
    return (24 * n * n - 22 * n) / 2;
}
 
// Driver program to test above function
int main()
{
    int n = 3;
    printf("3rd Icosihexagonal Number is = %d",
           IcosihexagonalNum(n));
 
    return 0;
}


Java
// Java program for above approach
class GFG{
     
// Finding the nth icosihexagonal number
public static int IcosihexagonalNum(int n)
{
    return (24 * n * n - 22 * n) / 2;
}
 
// Driver code
public static void main(String[] args)
{
    int n = 3;
     
    System.out.println("3rd Icosihexagonal Number is = " +
                                    IcosihexagonalNum(n));
}
}
 
// This code is contributed by divyeshrabadiya07


Python3
# Python3 program for above approach
 
# Finding the nth Icosihexagonal Number
def IcosihexagonalNum(n):
 
    return (24 * n * n - 22 * n) // 2
 
# Driver Code
n = 3
print("3rd Icosihexagonal Number is = ",
                   IcosihexagonalNum(n))
 
# This code is contributed by divyamohan123


C#
// C# program for above approach
using System;
 
class GFG{
     
// Finding the nth icosihexagonal number
public static int IcosihexagonalNum(int n)
{
    return (24 * n * n - 22 * n) / 2;
}
 
// Driver code
public static void Main(String[] args)
{
    int n = 3;
     
    Console.WriteLine("3rd Icosihexagonal Number is = " +
                                   IcosihexagonalNum(n));
}
}
 
// This code is contributed by 29AjayKumar


Javascript


输出:
3rd Icosihexagonal Number is = 75

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