CJCoding With Joseph

Override a Calculated Result

The base class Shape has a virtual method Area() that returns 0. Override Area() in the Rectangle class so it returns width * height. Do NOT write a Main method.

For a Rectangle with width = 4 and height = 3, 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.