注意这个问题 Pi in C#
我编码了下面的代码并给出了最后6位数为0的输出。所以我想通过将所有内容转换为十进制来改进程序。我从来没有在C#中使用过十进制而不是之前的双倍,而我在常规使用中只能使用double。
所以请帮助我进行十进制转换,我试图在开始时将所有双倍替换为十进制并且它没有变好:(。
using System;
class Program
{
static void Main()
{
Console.WriteLine(" Get PI from methods shown here");
double d = PI();
Console.WriteLine("{0:N20}",
d);
Console.WriteLine(" Get PI from the .NET Math class constant");
double d2 = Math.PI;
Console.WriteLine("{0:N20}",
d2);
}
static double PI()
{
// Returns PI
return 2 * F(1);
}
static double F(int i)
{
// Receives the call number
//To avoid so error
if (i > 60)
{
// Stop after 60 calls
return i;
}
else
{
// Return the running total with the new fraction added
return 1 + (i / (1 + (2.0 * i))) * F(i + 1);
}
}
}
输出
从此处显示的方法获取PI 3.14159265358979000000从.NET Math类常量中获取PI 3.14159265358979000000
答案 0 :(得分:4)
好吧,将double
替换为decimal
是一个好的开始 - 然后您需要做的就是将常量从2.0更改为2.0米:
static decimal F(int i)
{
// Receives the call number
// To avoid so error
if (i > 60)
{
// Stop after 60 calls
return i;
}
else
{
// Return the running total with the new fraction added
return 1 + (i / (1 + (2.0m * i))) * F(i + 1);
}
}
当然它的精确度仍然有限,但略高于double
。结果是3.14159265358979325010
。