area of equilateral triangle code example

Example 1: area of equilateral triangle in java

import java.util.Scanner;
public class AreaOfEquilateral
{
   public static void main(String[] args)
   {
      Scanner sc = new Scanner(System.in);
      System.out.println("Please enter the side of equilateral triangle: ");
      double side = sc.nextDouble();
      double area = (Math.sqrt(3)/4) * (side * side);
      System.out.println("Area of equilateral triangle is: " + area);
      sc.close();
   }
}

Example 2: how to find the area of a triangle

#this is the code to find the area of a parrelogram and triangle
#change the numbers to select what height and base your shape is

b = 3 #b is base 
h = 3 #h is height (middle)


t = 5 #this is the base of the triangle
i = 5 #and this is the height
p = t*i #dont touch this


print("this is the area of the parrelogram")
print(b * h)

m = input("do you want to calculate a triangle? (space before answer)") 

print(m)

if m == " yes":
    print ("this is the area of the triangle that you inputed")
    print (p/2)
else:
    print("ok")

Example 3: triangle area formula

double traingleArea  = base * height / 2;

Example 4: how to find area of equilateral triangle only with side length

sqrt(3)
A = -------SideLength^2
       4

Example 5: what is the formula to find the area of a triangle

A=hbb
2=5·5
2=12.5

Tags:

Misc Example