C++ program

Write a C++ program to carry out the following tasks.

Define a class named Circle that has data members named radius and height as well as member method named setDimension which will be used to initialize the values of height and radius and a virtual method named volume.
Implements a derived class from circle named cylinder whose radius and height are 7cm and 22 cm respectively.
Implements a derived class from circle named cone whose radius and height are 7cm and 17 cm respectively.
Outputs the volume for the cylinder and cone.

This question has been answered.

Get Answer