Create three derived classes cube, sphere, and cylinder that inherit container, so that each derived class contains virtual functions surface_area and volume (), which are used to calculate the surface area and volume of cube, sphere, and cylinder, respectively. Write the main program and use C++ polymorphism to calculate the surface area and volume of a cube with a side length of 6.0, a sphere with a radius of 5.0, and a cylinder with a height of 6.0.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 3PE
icon
Related questions
Question

Please solve using oop in c++ 

 

Gives the following abstract base class container:
class container{
protected:
double radius;
public:
container(double radius1)
radius=radius1;
virtual double surface_area()=0;
virtual double volume()=0;
Create three derived classes cube, sphere, and cylinder that inherit container, so that each derived class
contains virtual functions surface_area and volume (), which are used to calculate the surface area and
volume of cube, sphere, and cylinder, respectively. Write the main program and use C++ polymorphism
to calculate the surface area and volume of a cube with a side length of 6.0, a sphere with a radius of
5.0, and a cylinder with a height of 6.0.
Transcribed Image Text:Gives the following abstract base class container: class container{ protected: double radius; public: container(double radius1) radius=radius1; virtual double surface_area()=0; virtual double volume()=0; Create three derived classes cube, sphere, and cylinder that inherit container, so that each derived class contains virtual functions surface_area and volume (), which are used to calculate the surface area and volume of cube, sphere, and cylinder, respectively. Write the main program and use C++ polymorphism to calculate the surface area and volume of a cube with a side length of 6.0, a sphere with a radius of 5.0, and a cylinder with a height of 6.0.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT