Double multiplied by 100 and then cast to long is giving wrong value

JavaFloating PointNumbers

Java Problem Overview


I have the following code:

Double i=17.31;
long j=(long) (i*100);
System.out.println(j);

O/P : 1730 //Expected:1731

Double i=17.33;
long j=(long) (i*100);
System.out.println(j);

O/P : 1732 //Expected:1733

Double i=17.32;
long j=(long) (i*100);
System.out.println(j);

O/P : 1732 //Expected:1732{As expected}

Double i=15.33;
long j=(long) (i*100);
System.out.println(j);

O/P : 1533 //Expected:1533{as Expected}

I have tried to Google but unable to find reason.I am sorry if the question is trivial.

Java Solutions


Solution 1 - Java

None of the answers seem to deal with why 17.32 acted different.

1. Why it occurred

The difference in behaviour you see between 17.32 and 17.33 & 17.31 is due to IEEE-754 Rounding rules.

Rounding rule applied: from, The Java™ Virtual Machine Specification §2.8.1

> The rounding operations of the Java virtual machine always use IEEE > 754 round to nearest mode. Inexact results are rounded to the nearest > representable value, with ties going to the value with a zero > least-significant bit. This is the IEEE 754 default mode. The Java virtual > machine does not give any means to change the floating-point rounding > mode


2. Your case:

Double is: (1 sign-bit + 11 exponent-bits + 52 fraction-bits = 64bits). Internal representation after rounding below:

             1 [63]      11 [62-52]	          52 [51-00]
              Sign        Exponent             Fraction

17.31 -->    0 (+)	     10000000011 (+4)	  1.0001010011110101110000101000111101011100001010001111
17.32 -->    0 (+)       10000000011 (+4)	  1.0001010100011110101110000101000111101011100001010010 //rounded up
17.33 --> 	 0 (+)	     10000000011 (+4)	  1.0001010101000111101011100001010001111010111000010100

3. Internal representation (Proof):

17.31: (Mantissa comparison)

Actual:   1.00010100111101011100001010001111010111000010100011110...
Internal: 1.0001010011110101110000101000111101011100001010001111

17.32: (Mantissa comparison)

Actual:   1.00010101000111101011100001010001111010111000010100011... 
Internal: 1.0001010100011110101110000101000111101011100001010010    //round-up!

17.33: (Mantissa comparison)

Actual:   1.00010101010001111010111000010100011110101110000101000...
Internal: 1.0001010101000111101011100001010001111010111000010100

4. Conversion back-to-decimal:
17.31 ->  17.309999999999998721023075631819665431976318359375...
17.32 ->  17.32000000000000028421709430404007434844970703125... //(was rounded up)
17.33 ->  17.3299999999999982946974341757595539093017578125...

(IEEE-754 Analysis Tool)

5. Cast to long

EDIT: There is a factor more at play at your multiplication step as @Jeppe Stig Nielsen said. The result of the FP multiplication (Reference) step does its own rounding-towards-nearest. This changes which results are as expected and which aren't, but the reason is still exactly the same as stated above.

Finally, due to the cast (long), truncation occurs, and leaves you with the results you see. (1730, 1732, 1732)

Narrowing Primitive Conversion : The Java™ Language Specification §5.1.3 > If the floating-point number is not an infinity, the floating-point > value is rounded to an integer value V, rounding toward zero using > IEEE 754 round-toward-zero mode

Solution 2 - Java

The double value is represented not as 17.31, but as 17.309999999999999. That's why when you multiply it by 100 you get 1730.99999999999999999. After conversion to Long your double value is truncated towards zero. So you get 1730.

Solution 3 - Java

As has been explained, this is due to very small floating point precision.

This can be resolve via using a Math.round(), command, as follows:

long j=Math.round(i*100);

This will allow the program to compensate for the very small errors which are inherit using floating point calculations, by not using a floor operation, as the default (long) does.

Solution 4 - Java

Cthulhu and svz's answers are correct. If you want to multiply doubles by 100 and avoid floating point rounding errors, you can use Math.round() to round the result to the closest long after each multiplication:

Double i=17.31;
long j=Math.round(i*100);
System.out.println(j);

This will still have floating point error when dealing extremely large (or negative) doubles. The larger the absolute value of a double, the more the difference is between it and the next double that Java can represent. After some point, consecutive doubles are more than an integer apart, and conventional rounding won't be able to smooth out the difference. For the examples you posted, this should work, though.

Solution 5 - Java

It has to do with the internal representation. If you take a look at i*100 in the first case, you'll see that it is 1730.9999999999998. The cast will only remove the part after the point (truncated).

Solution 6 - Java

For value like, String value = 1074.6

Use below code

double amount = Double.parseDouble(value);

String roundedValue = String.valueOf(Math.round(amount * 100))

You can get result 107460

Solution 7 - Java

When you do this kind of long conversion it's floor. Your 17.31 could actually be 17.30999999999 and that's why it resulted in 1730 instead of 1731.

use i = i * 100, then i.longValue() will solve the problem.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionxyzView Question on Stackoverflow
Solution 1 - JavaAnirudh RamanathanView Answer on Stackoverflow
Solution 2 - JavasvzView Answer on Stackoverflow
Solution 3 - JavaPearsonArtPhotoView Answer on Stackoverflow
Solution 4 - JavaKevinView Answer on Stackoverflow
Solution 5 - JavaBurkhardView Answer on Stackoverflow
Solution 6 - JavaDhruv PatelView Answer on Stackoverflow
Solution 7 - JavaGang SuView Answer on Stackoverflow