C# High double precision

前端 未结 6 1518
我在风中等你
我在风中等你 2021-01-19 00:45

I\'m writing a function that calculates the value of PI, and returns it as a double. So far so good. But once the function gets to 14 digits after the decimal place, it can\

6条回答
  •  轮回少年
    2021-01-19 00:57

    Try decimal instead of double. It can't store numbers as big as double, but I think it's got higher precision after the decimal. If you need more, you'll probably have to use a String.

提交回复
热议问题