Hello,
First, I will apologize for the length of this. I have an assignment for a Inventory Program which I have a couple of errors that are causing me to lose sleep. I have been pulling an all-nighter on this, and I just can not seem to figure this one out.
The assignment overview:
Modify the Inventory Program so the application can handle multiple items. Use an array to store the items. The output should display the information one product at a time, including the item number, the name of the product, the number of units in stock, the price of each
unit, and the value of the inventory of that product. In addition, the output should display the value of the entire inventory.
Create a method to calculate the value of the entire inventory.
Create another method to sort the array items by the name of the product.
Here are the codes
Inventory2:
Here is the Car class:
Here are the errors I receive:
.\Car.java:89: cannot find symbol
symbol : variable Car
location: class Car
return (totalValue += Car[CarCount].getValue());
^
.\Car.java:89: inconvertible types
found : <nulltype>
required: float
return (totalValue += Car[CarCount].getValue());
Do I need to rewrite the whole program?