โ Back to Classes
Question 450
Shopping Cart Class
Shopping Cart Class
Create a classShoppingCartthat stores item prices in a privateList<double>.Add(double price)puts a price in the cart, andTotal()returns the sum of all prices. Do not write aMainmethod. After adding 10.0, 5.5, and 4.5 the program prints: 20
Expected Output:
20
Topics:
Classes
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.