โ Back to Polymorphism
Question 576
Override a Calculated Result
Override a Calculated Result
The base classShapehas avirtualmethodArea()that returns0. OverrideArea()in theRectangleclass so it returnswidth * height. Do NOT write aMainmethod. For aRectanglewithwidth = 4andheight = 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.