这里给出一个边长为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
如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程和学生竞争性编程现场课程。