Question: Given a class called Circle in which there is a double type instance data called radius, a constructor that initializes the radius and a toString()
Given a class called Circle in which there is a double type instance data called radius, a constructor that initializes the radius and a toString() returns the instance data. Write a class called Cone that is inherited from Circle with a constructor that will initialize its instance data, a method called computeVolume() in which it will compute the volume of cone using the formula as: 1/3*PI*radius * radius*height and return the result. It will also override toString() to return its instance data. Pay attention in code-reusability.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
