📜  五角大楼编号

📅  最后修改于: 2021-04-29 11:15:21             🧑  作者: Mango

给定数字N ,任务是找到N五角大楼数。

例子:

方法:第N个五角大楼数由以下公式给出:

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

下面是上述方法的实现:

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


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


Java
// Java program for above approach
import java.util.*;
 
class GFG {
 
// Finding the nth pentacontagon number
static int pentacontagonNum(int n)
{
    return (48 * n * n - 46 * n) / 2;
}
 
// Driver code
public static void main(String[] args)
{
    int n = 3;
     
    System.out.println("3rd pentacontagon Number is = " +
                                    pentacontagonNum(n));
}
}
 
// This code is contributed by offbeat


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


C#
// C# program for above approach
using System;
 
class GFG {
 
// Finding the nth pentacontagon number
static int pentacontagonNum(int n)
{
    return (48 * n * n - 46 * n) / 2;
}
 
// Driver code
public static void Main(string[] args)
{
    int n = 3;
     
    Console.Write("3rd pentacontagon Number is = " +
                               pentacontagonNum(n));
}
}
 
// This code is contributed by rutvik_56


Javascript


输出:
3rd pentacontagon Number is = 147

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