CJCoding With Joseph

Polymorphic List Total

Complete AreaCalculator.TotalArea so it returns the sum of Area() for every Shape in the list. Each shape computes its own area through its overridden Area() method, so one loop works for all shape types. Do NOT write a Main method.

For a Square(2) (area 4) and a Rectangle(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.