Create a class that represents a geometric rectangle shape. The shape should be defined by a point for the upper left corner and the width and height. Also define a member function that determines if a point parameter is inside or on the edge of the rectangle by returning true or false.
In theory, nothing should or shouldn't go inside the main function besides return 0;. It seems like this problem only requires you to create the class.
Create a class that represents a geometric rectangle shape. The shape should be defined by a point for the upper left corner and the width and height. Also define a member function that determines if a point parameter is inside or on the edge of the rectangle by returning true or false.