Look at my edited post. Make that change and the following changes as well.
several issues that I failed to spot at first are:
public void setItemTotal(int total);
No semicolon is needed at the end of this line.
Same problem exists at other places as well.
private double totalInventory;
is not being used anywhere in the program.
Also , please use code tags when you post
[EDIT]
One thing more is that you should not be using two 'Cars' classes. Change one to CarDriver or something.
The two classes should be in two files and the file name should correspond to the class name.
Better still use a package for both these classes.