开发者

Calculating remainder of two doubles in java

开发者 https://www.devze.com 2023-02-22 18:14 出处:网络
I have the following code : Double x = 17.0; Double y = 0.1; double remainder = x.doubleValue() % y.doubleValue();

I have the following code :

Double x = 17.0;
Double y = 0.1;

double remainder = x.doubleValue() % y.doubleValue();

When I run this I get remainder = 0.09999999999999906

Any idea why??

I basically need to check that x is fully divisible by y. Can you suggest 开发者_StackOverflowalternative ways to do that in java.

Thanks


Because of how floating-point numbers are represented.

If you want exact values, use BigDecimal:

BigDecimal remainder = BigDecimal.valueOf(x).remainder(BigDecimal.valueOf(y));

Another way to to that is to multiple each value by 10 (or 100, 1000), cast to int, and then use %.


You need to compare your result which allows for rounding error.

if (remainder < ERROR || remainder > 0.1 - ERROR)

Also, don't use Double when you mean to use double


Expecting precise results from double arithmetic is problematic on computers. The basic culprit is that us humans use base 10 mostly, whereas computers normally store numbers in base 2. There are conversion problems between the two.

This code will do what you want:

public static void main(String[] args) {
    BigDecimal x = BigDecimal.valueOf(17.0);
    BigDecimal y = BigDecimal.valueOf(0.1);

    BigDecimal remainder = x.remainder(y);
    System.out.println("remainder = " + remainder);

    final boolean divisible = remainder.equals(BigDecimal.valueOf(0.0));
    System.out.println("divisible = " + divisible);

}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号