Problem #911 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ program to create an abstract class Person with abstract methods eat() and exercise(). Create derived classes Athlete and LazyPerson that extend the Person class and implement the respective methods to describe how each person eats and exercises.

Your Solution