โ Back to Polymorphism
Question 564
Polymorphic List Total
Polymorphic List Total
CompleteAreaCalculator.TotalAreaso it returns the sum ofArea()for everyShapein the list. Each shape computes its own area through its overriddenArea()method, so one loop works for all shape types. Do NOT write aMainmethod. For aSquare(2)(area 4) and aRectangle(3, 4)(area 12) the program prints: 16
Expected Output:
16
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.