7

解决了一个错误,我有了一些有趣的发现。

此过程的结果

    static void Main(string[] args)
    {
        int i4 = 4;
        Console.WriteLine("int i4 = 4;");
        Console.WriteLine("i4 % 1 = {0}", i4 % 1);

        double d4 = 4.0;
        Console.WriteLine("double d4 = 4.0;");
        Console.WriteLine("d4 % 1 = {0}", d4 % 1);
        Console.WriteLine("-----------------------------------------------------------");
        int i64 = 64;
        double dCubeRootOf64 = Math.Pow(i64, 1.0 / 3.0);
        Console.WriteLine("int i64 = 64;");
        Console.WriteLine("double dCubeRootOf64 = Math.Pow(i64, 1.0 / 3.0) = {0}", dCubeRootOf64);
        Console.WriteLine("dCubeRootOf64 = {0}", dCubeRootOf64);
        Console.WriteLine("dCubeRootOf64 % 1 = {0} ??????????????  Why 1. ??????????", dCubeRootOf64 % 1);

        Console.ReadLine();
    }

int i4 = 4;
i4 % 1 = 0
double d4 = 4.0;
d4 % 1 = 0
-----------------------------------------------------------
int i64 = 64;
double dCubeRootOf64 = Math.Pow(i64, 1.0 / 3.0) = 4
dCubeRootOf64 = 4
dCubeRootOf64 % 1 = 1 ??????????????  Why 1. ??????????

int 4 % 1 = 0 - 正确的

double 4.0 % 1 = 0- 正确的

但错误在于:

Math.Pow(64, 1.0 / 3.0) % 1 = 1

64的立方根是4。为什么在这种情况下4 % 1 = 1

4

2 回答 2

12

Math.Pow(64, 1.0 / 3.0)返回3.9999999999999996
显示时四舍五入4

取模 1 返回0.99999999999999956,显示时类似地四舍五入1

您可以通过添加查看真实值.ToString("R")

于 2012-05-24T19:08:03.020 回答
3

dCubeRootOf64 % 1 = 1返回 1 而不是 0;导致Math.Pow(i64, 1.0 / 3.0)返回3.99999999999999963.9999999999999996 % 1返回0.99999999999999956依次舍入为 1。

因此结果1。

于 2012-05-24T19:12:00.250 回答