📌  相关文章
📜  内接六边形的正方形内接最大的鲁洛三角形

📅  最后修改于: 2021-10-23 09:07:04             🧑  作者: Mango

给定一个边长a 的正六边形,它内接一个正方形,该正方形内接一个鲁洛三角形。任务是找到这个鲁洛三角形的最大可能面积。
例子:

Input: a = 5
Output: 28.3287

Input: a = 9
Output: 91.7848

方法:由于内接六边形的正方形的边是x=1.268a 。请参考可刻在六边形内的最大正方形。
此外,在鲁洛三角形中, h = x = 1.268a
所以,鲁洛三角形的面积, A = 0.70477*h^2 = 0.70477*(1.268a)^2
下面是上述方法的实现:

C++
// C++ Program to find the biggest Reuleaux triangle
// inscribed within in a square which in turn
// is inscribed within a hexagon
#include 
using namespace std;
 
// Function to find the biggest reuleaux triangle
float Area(float a)
{
 
    // side cannot be negative
    if (a < 0)
        return -1;
 
    // height of the reuleaux triangle
    float h = 1.268 * a;
 
    // area of the reuleaux triangle
    float A = 0.70477 * pow(h, 2);
 
    return A;
}
 
// Driver code
int main()
{
    float a = 5;
    cout << Area(a) << endl;
 
    return 0;
}


Java
// Java Program to find the biggest Reuleaux triangle
// inscribed within in a square which in turn
// is inscribed within a hexagon
 
import java.io.*;
 
class GFG
{
 
// Function to find the biggest reuleaux triangle
static float Area(float a)
{
 
    // side cannot be negative
    if (a < 0)
        return -1;
 
    // height of the reuleaux triangle
    float h =(float) 1.268 * a;
 
    // area of the reuleaux triangle
    float A = (float)(0.70477 * Math.pow(h, 2));
 
    return A;
}
 
    // Driver code
    public static void main (String[] args)
    {
        float a = 5;
    System.out.println( Area(a));
    }
}
 
// This code is contributed by anuj_67


Python3
# Python3 Program to find the biggest
# Reuleaux triangle inscribed within
# in a square which in turn is
# inscribed within a hexagon
import math
 
# Function to find the biggest
# reuleaux triangle
def Area(a):
 
    # side cannot be negative
    if (a < 0):
        return -1
 
    # height of the reuleaux triangle
    h = 1.268 * a
 
    # area of the reuleaux triangle
    A = 0.70477 * math.pow(h, 2)
 
    return A
 
# Driver code
a = 5
print(Area(a),end = "\n")
 
# This code is contributed
# by Akanksha Rai


C#
// C# Program to find the biggest Reuleaux
// triangle inscribed within in a square
// which in turn is inscribed within a hexagon
using System;
 
class GFG
{
 
// Function to find the biggest reuleaux triangle
static float Area(float a)
{
 
    // side cannot be negative
    if (a < 0)
        return -1;
 
    // height of the reuleaux triangle
    float h =(float) 1.268 * a;
 
    // area of the reuleaux triangle
    float A = (float)(0.70477 * Math.Pow(h, 2));
 
    return A;
}
 
// Driver code
public static void Main ()
{
    float a = 5;
    Console.WriteLine(Area(a));
}
}
 
// This code is contributed
// by Akanksha Rai


PHP


Javascript


输出:
28.3287

如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程学生竞争性编程现场课程