โ Back to Interfaces
Question 633
Aggregate Over a List of Interface Values
Aggregate Over a List of Interface Values
TheIPricedinterface declaresint Price(), and theCoffee(3) andCake(5) classes already implement it. Complete theCart.Totalmethod so it adds up thePrice()of every item in the list and returns the total. Do NOT write aMainmethod. 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.