CJCoding With Joseph

Aggregate Over a List of Interface Values

The IPriced interface declares int Price(), and the Coffee (3) and Cake (5) classes already implement it. Complete the Cart.Total method so it adds up the Price() of every item in the list and returns the total. Do NOT write a Main method.

For a cart holding Coffee, Cake, Coffee the program prints:
11

Expected Output:

11
Topics:
Interfaces
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.