vote up -1 vote down star

NEVER MIND- IT WAS MY OWN DUMB MISTAKE, CONFUSED THE VARIABLES

I have the following while loop:

while (((pi.getFunds() - rmiPrice) > 0) && (rmi.getInventory() > 0))
{
}

pi.getFunds() is a double that represents how much money a fictional object (pi) has, rmiPrice is a double that represents a price of a product (rmi) that pi wants to buy. rmi.getInventory checks how much rmi is in the inventory- what I'm trying to do is this- while pi can afford to buy 1 more rmi AND there is at least 1 rmi in inventory, execute what is in the while loop.

What seems to be happening instead is that the && is not being recognized as either the inventory or the funds are allowed to go below 0 as long as the other is positive- any idea what I'm doing wrong?

I've also tried this:

int rmiInv = rmi.getInventory();
double piFunds = pi.getFunds();

while (((piFunds - rmiPrice) > 0) && (rmiInv > 0)) {}

And tried playing around with the bracket combos

while ((piFunds - rmiPrice) > 0 && rmiInv > 0) {}

while (piFunds - rmiPrice > 0 && rmiInv > 0) {}

nothing seems to work,

Thank you!

flag
what's worse is that sometimes it seems to work, and other time it doesnt... – Olegious Aug 16 at 14:23
What is inside the loop? Also, in the original example, would it be more consistent to create a member function price() in the rmi object so that your code uses rmi.price() rather than rmiPrice? – Matt Nizol Aug 16 at 14:26
General rule: don't blame the compiler, at least for simple cases, as it have been quite tested over the years... First check your code (and Vijay's answer seems good: check if diff is above a small number). – PhiLho Aug 16 at 14:29
why don't you write (piFunds > rmiPrice) ? – Zed Aug 16 at 14:30

4 Answers

vote up 2 vote down

precision issues while subtracting an integer from a double..

link|flag
That would also be my guess – dmeister Aug 16 at 14:27
But there is no subtraction of integer from double. The subtraction is between doubles. – Chris Jester-Young Aug 16 at 14:28
yes, i mistook rmiPrice for an integer. However, I guess precision is still an issue here. – Vijay Dev Aug 16 at 14:33
vote up 0 vote down

Can you, before the loop and at each iteration, print out the values of piFunds, rmiPrice, and rmiInv, and paste it here? I suspect numeric overflow.

link|flag
vote up 0 vote down

Oh wow, I think I just used the wrong variables.... sorry guys.... How do I delete the question?

link|flag
Under the tags in the question, there should be options like edit, delete, etc. Pick delete. :-) – Chris Jester-Young Aug 16 at 14:30
Heh, too many answers to delete.... – Olegious Aug 16 at 14:34
vote up 0 vote down

You are not doing anything wrong. The while: while(expression) { // stuff }, where expression must evaluate to boolean. In your case the expression: ((pi.getFunds() - rmiPrice) > 0) && (rmi.getInventory() > 0) must evaluate to boolean true to have the code inside the loop executed. If the expression is false, it is never executed. Again, in your case, both operands MUST evaluate to true.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.