Write a program that takes a user\'s input (X) to find and display the area (A)
ID: 3639977 • Letter: W
Question
Write a program that takes a user's input (X) to find and display the area (A) for the following:• A square with sides X, where A = X^2
• A circle with radius X, where A = 3.14 * X^2
• An equilateral triangle with side X, where A = Sqrt(3)/4 * X^2
I want you to create and use the following value returning functions in your program:
• AreaSquare(Side) As Float
o Returns the area of the square as a float
• AreaCircle(Radius) As Float
o Returns the area of the circle as a float
• AreaEqTriangle(Side) As Float
o Returns the area of the equilateral triangle as a float