📜  程序检查N是否为同义七角形数字

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

给定整数N ,任务是检查它是否为同义七角形数。

例子:

方法:

  1. 二十面体对数的第K项表示为
    K^{th} Term = \frac{19*K^{2} - 17*K}{2}
  2. 因为我们必须检查给定的数字是否可以表示为二十面七角形数字。可以检查如下–
  1. 最后,检查使用此公式计算的值是一个整数,这意味着N是一个二十面体数字。

下面是上述方法的实现:

C++
// C++ implementation to check that
// a number is icosihenagonal number or not
 
#include 
 
using namespace std;
 
// Function to check that the
// number is a icosihenagonal number
bool isicosihenagonal(int N)
{
    float n
        = (17 + sqrt(152 * N + 289))
          / 38;
 
    // Condition to check if the
    // number is a icosihenagonal number
    return (n - (int)n) == 0;
}
 
// Driver Code
int main()
{
    int i = 21;
 
    // Function call
    if (isicosihenagonal(i)) {
        cout << "Yes";
    }
    else {
        cout << "No";
    }
    return 0;
}


Java
// Java implementation to check that a
// number is icosihenagonal number or not
class GFG{
 
// Function to check that the number
// is a icosihenagonal number
static boolean isicosihenagonal(int N)
{
    float n = (float) ((17 + Math.sqrt(152 * N +
                                       289)) / 38);
 
    // Condition to check if the number
    // is a icosihenagonal number
    return (n - (int)n) == 0;
}
 
// Driver Code
public static void main(String[] args)
{
    int i = 21;
 
    // Function call
    if (isicosihenagonal(i))
    {
        System.out.print("Yes");
    }
    else
    {
        System.out.print("No");
    }
}
}
 
// This code is contributed by 29AjayKumar


Python3
# Python3 implementation to check that
# a number is icosihenagonal number or not
import math
 
# Function to check that the number
# is a icosihenagonal number
def isicosihenagonal(N):
 
    n = (17 + math.sqrt(152 * N + 289)) / 38
 
    # Condition to check if the number
    # is a icosihenagonal number
    return (n - int(n)) == 0
 
# Driver Code
i = 21
 
# Function call
if isicosihenagonal(i):
    print("Yes")
else :
    print("No")
     
# This code is contributed by divyamohan123


C#
// C# implementation to check that a
// number is icosihenagonal number or not
using System;
 
class GFG{
 
// Function to check that the number
// is a icosihenagonal number
static bool isicosihenagonal(int N)
{
    float n = (float)((17 + Math.Sqrt(152 * N +
                                      289)) / 38);
 
    // Condition to check if the number
    // is a icosihenagonal number
    return (n - (int)n) == 0;
}
 
// Driver Code
public static void Main()
{
    int i = 21;
 
    // Function call
    if (isicosihenagonal(i))
    {
        Console.Write("Yes");
    }
    else
    {
        Console.Write("No");
    }
}
}
 
// This code is contributed by Code_Mech


Javascript


输出:
Yes