CJCoding With Joseph

Implement an Abstract Method

The abstract class Shape declares an abstract method Area with no body. Provide the body in the Rectangle subclass so it returns Width * Height. An abstract method MUST be implemented by any concrete subclass. Do NOT write a Main method.

For new Rectangle(3, 4) the program prints:
12

Expected Output:

12
Topics:
Polymorphism
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.