Page 1 of 1

Operation: Division

Posted: 01 Oct 2014 13:04
by xxx
Hello,

If I try to execute the following operation in a script, I get not the expected result.

x=5/2;

The result is 2 instead of 2.5.

May be there is a simple reason for and it is easy to solve.

Re: Operation: Division

Posted: 02 Oct 2014 09:12
by sambarlick
Instead of 5/2 try 5/2.0
worked for me.

Re: Operation: Division

Posted: 02 Oct 2014 11:41
by Martin
Hi,

Automagic uses integer math when both operands are integers. You can avoid it by using a floating point number for the divisor or dividend:
x = 5/2.0;

Regards,
Martin

Edit: Question was asked twice, merged the two topics.

Re: Operation: Division

Posted: 02 Oct 2014 12:49
by xxx
Strange, but it works. :))
Thank you so much.

Re: Operation: Division

Posted: 02 Oct 2014 15:59
by MURTUMA
@Martin: On a slightly related question.. Should the 2.5 round up to 3 instead of 2? Or are the integer calculations only cropping decimals off?

Re: Operation: Division

Posted: 03 Oct 2014 09:06
by Martin
Integer division is defined to round towards zero, the same is used in Java as well: 5/2-->2, -5/2-->-2

Re: Operation: Division

Posted: 03 Oct 2014 14:19
by Bushmills
For rounding the result of an operation on integers, multiply one of the operation factors by 2. Add 1 to the result, then divide by 2.

For your example 5/2, this means, (2*5/2+1)/2.

This little trick is useful when you want to stick to integer operands, and not resort to using floats for a simple operation like rounding.