CJCoding With Joseph

Inventory Item Class

Create a class InventoryItem with a public int field Quantity set by the constructor. Add a Remove(int amount) method that reduces Quantity by amount but never lets it go below 0. Do not write a Main method.

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.