• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Car Inventory Problems

 
Greenhorn
Posts: 26
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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?
 
Bartender
Posts: 1849
15
Eclipse IDE Spring VI Editor Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You don't need to rewrite the whole program...

Your syntax is a little off here....





Hope that helps!
Janeice

[EDIT] fixed a couple errors.... I misunderstood what you were trying to return....
 
Rancher
Posts: 600
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Kevin:

Just a couple of style issues: variable names should begin with a lowercase, so:

instead of:

You probably should eliminate lines 14-18, since line 35 will blow away that object.

John.
 
No matter. Try again. Fail again. Fail better. This time, do it with this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic