Question: JAVA QUESTION 3: The area of an equilateral triangle is computed as follows (given that all sides have length a): 43(a2) Complete the code below
JAVA
QUESTION 3: The area of an equilateral triangle is computed as follows (given that all sides have length a): 43(a2) Complete the code below (i.e., copy/paste into new files called AreaProgram. java and AreaprogramTest. java) to compute the area of the triangle. Test your code to see whether it is correct. When a=1 the area is around 0.433, when a=5 the area is around 10.825. public class reaprogram f double a; double area; public double computearea ( ) f // compute the area \} \} public class Areaprogramtest f public static void main(String args[]) i Areaprogram areaProgram = new AreaProgram( ); System.out.println("The area is "+areaprogram.computeArea ( )); f \}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
