Please solve using oop in c++
Extracted 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.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here