📌  相关文章
📜  可以刻在等边三角形内的最大正方形

📅  最后修改于: 2021-04-27 22:21:39             🧑  作者: Mango

这里给出的是边长为a的等边三角形。任务是找到可以在其中刻有铭文的最大正方形的一面。
例子:

Input: a = 5 
Output: 2.32

Input: a = 7
Output: 3.248

方法:让正方形的边为x
现在, AH垂直于DE
DE平行于BC ,因此,角度AED =角度ACB = 60

In triangle EFC,
              => Sin60 = x/ EC
              => √3 / 2 = x/EC
              => EC = 2x/√3
In triangle AHE,
              => Cos 60 = x/2AE
              => 1/2 = x/2AE
              => AE = x

因此,三角形的边AC = 2x /√3+ x 。现在,
a = 2x /√3+ x
因此, x = a /(1 + 2 /√3)= 0.464a
下面是上述方法的实现:

C++
// C++ Program to find the biggest square
// which can be inscribed within the equilateral triangle
#include 
using namespace std;
 
// Function to find the side
// of the square
float square(float a)
{
 
    // the side cannot be negative
    if (a < 0)
        return -1;
 
    // side of the square
    float x = 0.464 * a;
 
    return x;
}
 
// Driver code
int main()
{
    float a = 5;
    cout << square(a) << endl;
 
    return 0;
}


Java
// Java Program to find the
// the biggest square which
// can be inscribed within
// the equilateral triangle
 
class GFG
{
    // Function to find the side
    // of the square
    static double square(double a)
    {
     
        // the side cannot be negative
        if (a < 0)
            return -1;
     
        // side of the square
        double x = 0.464 * a;
        return x;
    }
     
    // Driver code
    public static void main(String []args)
    {
        double a = 5;
        System.out.println(square(a));
    }
}
 
// This code is contributed by ihritik


Python3
# Python3 Program to find the biggest square
# which can be inscribed within the equilateral triangle
 
# Function to find the side
# of the square
def square( a ):
 
 
    # the side cannot be negative
    if (a < 0):
        return -1
 
    # side of the square
    x = 0.464 * a
 
    return x
 
 
# Driver code
a = 5
print(square(a))
 
# This code is contributed by ihritik


C#
// C# Program to find the biggest
// square which can be inscribed
// within the equilateral triangle
using System;
 
class GFG
{
    // Function to find the side
    // of the square
    static double square(double a)
    {
     
        // the side cannot be negative
        if (a < 0)
            return -1;
     
        // side of the square
        double x = 0.464 * a;
        return x;
    }
     
    // Driver code
    public static void Main()
    {
        double a = 5;
        Console.WriteLine(square(a));
    }
}
 
// This code is contributed by ihritik


PHP


Javascript


输出:
2.32