Write two classes, Sphere
and Cylinder
. The Sphere
class takes a radius r
as a parameter in the constructor, and Cylinder
takes both a radius r
and a height h
as parameters in the constructor. Implement the classes listed here as appropriate for each object.
public double sphereVolume()
public double sphereSurface()
public double cylinderVolume()
public double cylinderSurface()
Then write CylinderTester
and SphereTester
to ensure that your classes perform as required.