CJCoding With Joseph

Puppy Uses Inherited Eat

The base class Animal defines an Eat() method that prints Munching. The Puppy class inherits from Animal and has a Play() method. Inside Play(), after printing Playing, call the inherited Eat() method. Do NOT write a Main method.

When the tester creates a Puppy and calls Play(), the program prints:
Playing
Munching

Expected Output:

Playing
Munching
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.