Assignment:
Choose a product that lends itself to an inventory (for example, products at your workplace, office supplies, music CDs, DVD movies, or software).
Create a product class that holds the item number, the name of the product, the number of units in stock, and the price of each unit.
Create a Java application that displays the product number, the name of the product, the number of units in stock, the price of each unit, and the value of the inventory (the number of units in stock multiplied by the price of each unit). Pay attention to the good programming practices in the text to ensure your source code is readable and well documented.
You need to create two files. The first contains the main method and the second is a class file
Instead of having a compute average method on the class file, you will have compute value method.
You would have getter and setter methods for these variables.You would also have a computeValue method.