โ Back to Classes
Question 447
Inventory Item Class
Inventory Item Class
Create a classInventoryItemwith a public int fieldQuantityset by the constructor. Add aRemove(int amount)method that reducesQuantitybyamountbut never lets it go below 0. Do not write aMainmethod. Starting with 10 and removing 3, the program prints: 7
Expected Output:
7
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.