给定一个数N ,任务是找到第N个八边形数。
A hectagon number is class of figurate number. It has 100 – sided polygon called hectagon. The N-th hectagon number count’s the 100 number of dots and all others dots are surrounding with a common sharing corner and make a pattern. The first few hectagonol numbers are 1, 100, 297, 592 …
例子:
Input: N = 2
Output: 100
Explanation:
The second hectagonol number is 100.
Input: N = 3
Output: 297
方法:第N个八边形数由公式给出:
- s 边多边形的第 N 项 =
- 因此100边多边形的第N项是
下面是上述方法的实现:
C++
// C++ program for above approach
#include
using namespace std;
// Finding the nth hectagon Number
int hectagonNum(int n)
{
return (98 * n * n - 96 * n) / 2;
}
// Driver Code
int main()
{
int n = 3;
cout << "3rd hectagon Number is = "
<< hectagonNum(n);
return 0;
}
// This code is contributed by shivanisinghss2110
C
// C program for above approach
#include
#include
// Finding the nth hectagon Number
int hectagonNum(int n)
{
return (98 * n * n - 96 * n) / 2;
}
// Driver program to test above function
int main()
{
int n = 3;
printf("3rd hectagon Number is = %d",
hectagonNum(n));
return 0;
}
Java
// Java program for above approach
import java.util.*;
class GFG{
// Finding the nth hectagon Number
static int hectagonNum(int n)
{
return (98 * n * n - 96 * n) / 2;
}
// Driver Code
public static void main(String args[])
{
int n = 3;
System.out.print("3rd hectagon Number is = " +
hectagonNum(n));
}
}
// This code is contributed by Akanksha_Rai
Python3
# Python3 program for above approach
# Finding the nth hectagon number
def hectagonNum(n):
return (98 * n * n - 96 * n) // 2
# Driver code
n = 3
print("3rd hectagon Number is = ",
hectagonNum(n))
# This code is contributed by divyamohan123
C#
// C# program for above approach
using System;
class GFG{
// Finding the nth hectagon Number
static int hectagonNum(int n)
{
return (98 * n * n - 96 * n) / 2;
}
// Driver Code
public static void Main()
{
int n = 3;
Console.Write("3rd hectagon Number is = " +
hectagonNum(n));
}
}
// This code is contributed by Akanksha_Rai
Javascript
输出:
3rd hectagon Number is = 297
时间复杂度: O(1)
辅助空间: O(1)
参考: https : //en.wiktionary.org/wiki/hectagon
如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程和学生竞争性编程现场课程。