Create a Java program to compute the area and perimeter (sum of all sides of the object, circle's perimeter is its circumference) of any of the following shapes: Circle , Rectangle, Square and Right Triangle. Create 1 Java Class for each shape below without main method with the specifications given below. There should be a constructor for each shape’s Java class to set the instance variables value which is passed as argument to the constructor coming from user input.
Object: CircleStates: radiusBehaviors: computeArea() - returns the area of a circle computeCircumference()
Object: RectangleStates: length, widthBehaviors: computeArea() - returns the area of a rectangle computePerimeter()Object: SquareStates: sideBehaviors: computeArea(), computePerimeter()
Object: RightTriangleStates: base, heightBehaviors: computeArea(), computePerimeter() -
Find first the hypotenuse which is the 3rd (longest) side using the Pythagorean formula. You may use the sqrt() method defined in Math Java class.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here