Forums Register Login

two simple troubles.

+Pie Number of slices to send: Send


The only two errors I am getting are denoted by "**********."

The first error I am getting gives me a different error message every time I modify the code. All I want is for the "prices.length" to limit "i."

The second error I am getting also tends to give me different messages. I am trying to define a variable based on an Array List. It is an int, but I need to extract values from an array list(quantities).

Any help or input anyone could provide would be great, thanks very much.
[ March 29, 2006: Message edited by: ken zemaitis ]
+Pie Number of slices to send: Send
length is a property of the array, not a method.

try

for (int i = 0; i < prices.length; i++)

also, it would help in the future if you posted the EXACT error message you are getting with the code you are posting. those error messages tell you a lot...
[ March 29, 2006: Message edited by: fred rosenberger ]
+Pie Number of slices to send: Send
i) Note that the prices is an array. To find the length of an array, you need to use the length property, not the length() method


ii) When you get something from a List, it always returns an Object. Looking at your code, it seems that you are adding a String to the array list. If that String represents an integer, you need to convert it accordingly (cast the Object to String and then convert it into an int).



Hope that helps.
[ March 29, 2006: Message edited by: Mani Ram ]
+Pie Number of slices to send: Send
in addition to what Mani Ram said
you have

this
taxRate = Integer.parseInt(taxRateAsString);

it must be doube

taxRate = Double.parseDouble((String)taxRateAsString);
&
reply must be initialized

hope to be helped
[ March 29, 2006: Message edited by: tayy abdelqader ]
Oh sure, it's a tiny ad, but under the right circumstances, it gets bigger.
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1004 times.
Similar Threads
Errors while compiling
Class Help!
Error while running program
Ton of problems
my last question for this program.
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 29, 2024 09:14:11.