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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started