0

这是我的简单方程计数器。现在它计算具有两个变量的方程。它基于尝试变量的许多组合(400 万或 1600 万)。所以代码运行良好a并且b计数准确。但是因为我试图将变量更改b为加倍,事情出错了。我预计行会b=b+0.1确保b每 10 次将变量设置为 1.0。但几乎在开始方式之后,每个都会出现更多的十进制数字b。那么我是否使用了错误的数据类型?或者我应该b通过不同的值来提高变量?(我也尝试将所有变量更改为双倍)。谢谢您的建议!

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Buffer{
static int a;
static double b;
static BufferedReader reader;
static String query;
static int range;
static int result;

public static void main(String[] args)throws IOException{
    reader=new BufferedReader(new InputStreamReader(System.in));

    System.out.print("Choose speed of test(fast or slow):");
    query=reader.readLine();

    if(query.equals("fast"))
        range=2000;
    else
        range=4000;

     //START THE TEST//       
    while((a+b)!=26000){
        b=b+0.1;
        if(b==range+1){
            b=0;
            a=a+1;
        }
        if((a+b)!=26000)
            System.out.println("a- "+a+", "+"b- "+b+"=false.");

        if((a+b)==26000){
            System.out.println("a- "+a+", "+"b- "+b+"=true.");
            System.out.println("\n"+"Done.You can possibly solve this equation, if a= "+a+" and b= "+b+".");
        }
        if(a==range&&b==range&&(a+b)!=26000){
            System.out.println("\n"+"Tested "+a*b+" options.Solution not found.");
            System.exit(0);
        }
    }   
}
}
4

3 回答 3

4

您可以使用 BigDecimal 而不是 float/double 原语来避免这些问题。其中一些在此处进行了描述:Java 错误 1 ​​- 使用浮点数和双精度数进行货币或财务计算

于 2013-07-31T16:30:40.627 回答
1

您处理的问题是表示错误。double 类型不能表示某些值。

这种情况的典型解决方案是使用 BigDecimal 或 Integer 类型。

于 2013-07-31T16:26:14.763 回答
1

这里的每个人都给了你一个替代解决方案,但我认为你应该明白,为什么数据类型double对你不起作用。

问题在于Binary representation。对于小数,不能以确切的形式表示。比如说:

10 is represented as 1010 in binary 但是

0.10 is 0.00011001100110011001100110011001 and still going on.....

因此,错误以双倍发生。正如其他人所建议的那样,选择 BigDecimal。

您还可以通过这些链接了解更多信息;

舍入误差

双打的加法

希望有帮助。

于 2013-07-31T16:51:04.340 回答