โ Back to Polymorphism
Question 589
Sum Areas Through an Interface
Sum Areas Through an Interface
TheIShapeinterface declaresint Area(). Create aRectangleclass (constructor takeswidthandheight,Area()returnswidth * height) and aSquareclass (constructor takesside,Area()returnsside * side), both implementingIShape. The tester stores them in oneIShape[]and totals their areas. Do NOT write aMainmethod. For{ Rectangle(2, 3), Square(4) }the total is6 + 16, so the program prints: 22
Expected Output:
22
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.