CJCoding With Joseph

Bird Inherits From Animal

The base class Animal already defines a Breathe() method that prints Breathing. Make the Bird class inherit from Animal so a Bird object can call the inherited Breathe() method. Do NOT write a Main method.

When the tester creates a Bird and calls Breathe(), the program prints:
Breathing

Expected Output:

Breathing
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.