Consider class Shape which is inherited by three classes Triangle, Circle andSquare.Class Shape has a constructor that only prints the area of each shape.Write a java program that allows a user to choose between the three shapes and enter anyrequired parameters to calculate the area. Use any methods, attributes or objects youneed, but the area must be printed by the constructor of class Shape. Area of the triangle : 1⁄2 base * hight Area of the square : X2 where X is the length of the side of the square. Area of the circle : radius2 * π ( for simplicity consider π as 3.14)Attempt to write your program in a clear and efficient way.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here