Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement your Sphere class so that it has a second constructor, this one taking a parameter representing the diameter. Create a Cube class similar to

Implement your Sphere class so that it has a second constructor, this one taking a parameter representing the diameter. Create a Cube class similar to the Sphere class but instead of setting the diameter it sets the length of the sides of the cube. Include the this reference on the parameters for each class.

Sphere Class:

public class Sphere { private int diameter; public Sphere() { diameter = 1; } public void setDiameter(int d) { diameter = d; } public int getDiameter() { return diameter; } public double getVolume() { double radius = diameter / 2; double pi = (double) 22 / 7; double volume = (4 * pi * radius * radius * radius)/3; return volume; } public double getSurfaceArea() { double radius = diameter / 2; double pi = (double) 22 / 7; double area = 4 * pi * radius * radius; return area; } public String toString() { return "A sphere with a diameter of " + getDiameter() + " has a volume of " + String.format("%.2f", getVolume()) + " and a surface area of " + String.format("%.2f", getSurfaceArea()); } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 3 Lnai 9286

Authors: Albert Bifet ,Michael May ,Bianca Zadrozny ,Ricard Gavalda ,Dino Pedreschi ,Francesco Bonchi ,Jaime Cardoso ,Myra Spiliopoulou

1st Edition

3319234609, 978-3319234601

More Books

Students also viewed these Databases questions