Question: (C++) Create a files rectangle.hpp, rectangle.cpp, circle.hpp, and circle.cpp, implement a Rectangleclass and a Circle class. Both of these classes should be derived from your

(C++) Create a files rectangle.hpp, rectangle.cpp, circle.hpp, and circle.cpp, implement a Rectangleclass and a Circle class. Both of these classes should be derived from your Shape class. The Rectangle class should have a width and a height, and the Circle class should have a radius. Here are the beginnings of definitions for these classes:

class Rectangle: public Shape {

private: float width; float height; public: }; class Circle : public Shape { private: float radius; public:}; Both of these classes should have constructors, accessors, and mutators, as needed, and each one should override the Shape classs area() method to compute areas that are appropriate for rectangles and circles. Add some code to your application to instantiate and print out some Rectangle and Circle objects.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!