📌  相关文章
📜  斜角数

📅  最后修改于: 2021-04-27 17:34:57             🧑  作者: Mango

给定数N ,任务是找到N对角线数。

例子:

方法:第N个对角线数由下式给出:

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

下面是上述方法的实现:

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


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


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


Python3
# Python3 program for above approach
 
# Finding the nth chiliagon Number
def chiliagonNum(n):
 
    return (998 * n * n - 996 * n) // 2;
 
# Driver Code
n = 3;
print("3rd chiliagon Number is = ",
                  chiliagonNum(n));
 
# This code is contributed by Akanksha_Rai


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


Javascript


输出:
3rd chiliagon Number is = 2997

时间复杂度: O(1)

辅助空间: O(1)

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