CJCoding With Joseph

Abstract Shape Area

The abstract class Shape declares an abstract method Area() with no body. Every concrete subclass must implement it. Implement Area() in Rectangle so it returns width * height. Do NOT write a Main method.

When the tester creates a Rectangle(3, 4) and prints its Area(), the program prints:
12

Expected Output:

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