c – OS Windows和Linux中的不同结果

我试图计算没有数学库的arkus sin().它工作,但在不同的平台上产生不同的结果.

Windows和Mac(正确):5.2359877560e-001 Linux:5.1532736669e-01

哪里有问题?

double my_asin(double k)
{
    double x = k;
    double a = 1;
    double s = x;
    const  double hodnota = 0.00000000001f;
    double s1 = 0;
    double d = x;
    double e = 1.0;
    double y;
    y = x * x;


    while(my_abs(s1 - s) >= hodnota) {
        s1 = s;

        d = d * y;

        e = e * ((a * a) / ((++a) * (++a)) );
        s = s + (d * e);
    }

    return s;

}

解决方法:

指令e = e *((a * a)/((a)*(a)));由于undefined behavior,可以产生不同的结果

您需要以这种方式更改代码

e *= a * a / ((a + 1) * (a + 2));
a += 2;

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...