📜  居中八角形数

📅  最后修改于: 2021-05-04 07:58:53             🧑  作者: Mango

给定数字n,找到第n个居中的八边形数字。
居中的八边形数字表示一个八角形,该八边形的中心是一个点,而在连续的八边形层中,其他点围绕着中心点。

例子 :

Input :  2
Output : 9

Input : 5
Output : 81

居中的八边形第n个数由下式给出:

CO_{n}= 4n^2 -4n+1

上述方法的基本实现:

C++
// Program to find nth
// centered octagonal
// number
#include 
using namespace std;
 
// Centered octagonal number function
int cen_octagonalnum(long int n)
{
    // Formula to calculate nth
    // centered octagonal number &
    // return it into main function.
    return (4 * n * n - 4 * n + 1);
}
 
// Driver Code
int main()
{
    long int n = 6;
    cout << n << "th  centered"
                 << " octagonal number : ";
    cout << cen_octagonalnum(n);
    cout << endl;
    n = 11;
    cout << n << "th  centered"
                  << " octagonal number : ";
    cout << cen_octagonalnum(n);
 
    return 0;
}


Java
// Java Program to find nth
// centered octagonal number
import java.io.*;
  
class GFG
{
      
    // Function to find centered
    // octagonal number
    static int centeredoctagonalNumber(int n)
    {
        // Formula to calculate nth
        // centered octagonal number
        // and return it into main function
        return 4 * n * (n - 1) + 1;
    }
      
    // Driver Code
    public static void main(String args[])
    {
        int n = 6;
        System.out.print(n + "th centered " +
                       "octagonal number: ");
        System.out.println(
                 centeredoctagonalNumber(n));
         
        n = 11;
        System.out.print(n + "th centered " +
                       "octagonal number: ");
        System.out.println(
                  centeredoctagonalNumber(n));
          
    }
}
 
// This code has been contributed by Prasad_Kshirsagar.


Python3
# Program to find nth
# centered octagonal number
 
def cen_octagonalnum(n) :
     
    # Formula to calculate nth
    # centered octagonal number
    return (4 * n * n -
            4 * n + 1)
 
# Driver Code
if __name__ == '__main__' :
         
    n = 6
    print(n,"th Centered",
            "octagonal number: ",
             cen_octagonalnum(n))
    n = 11
    print(n,"th Centered" ,
            "octagonal number: ",
             cen_octagonalnum(n))
                 
# This code is contributed
# by akt_mit


C#
// Program to find nth centered octagonal
// number
using System;
 
public class GFG{
     
    // Centered octagonal number function
    static long cen_octagonalnum(long  n)
    {
         
        // Formula to calculate nth
        // centered octagonal number &
        // return it into main function.
        return (4 * n * n - 4 * n + 1);
    }
     
    // Driver code
    static public void Main ()
    {
        long n = 6;
        Console.WriteLine(n + "th centered"
                    + " octagonal number : "
        + cen_octagonalnum(n));
     
        n = 11;
        Console.WriteLine(n + "th centered"
                    + " octagonal number : "
                    + cen_octagonalnum(n));
    }
}
 
// This code is contributed by anuj_67.


PHP


Javascript


输出

6th  centered octagonal number : 121
11th  centered octagonal number : 441