Create C++ classes for an inheritance hierarchy for shapes as shown in the diagram on next
page. The Shape has a pure virtual function SurfaceArea that needs to be implemented in its
derived classes.
class Shape
{
protected:
string name;
public:
Shape(string n) : name(n) {}
virtual float SurfaceArea() = 0;
};
You need to add appropriate data members to the derived classes and implement the
SurfaceArea function as Shape2D and Shape3D class. Write a main() to test Square, Circle,
Rectangle, Cylinder, and Pyramid objects.
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments