Floating point precision with writeln
Serg Gini
kornburn at yandex.ru
Sat Jun 1 10:49:10 UTC 2024
On Saturday, 1 June 2024 at 10:44:50 UTC, Maynard Kaiser wrote:
> Top o' the day, folks!
>
> I'm working with floats, doubles to be precise. Whenever I
> write them to the console, the maximum precision I get is 5
> digits after after the separator.
> If I wanted to have 8 or 9 digits after the separator, what
> would I have to do?
```d
import std;
void main()
{
writefln("%1.14f", std.math.PI);
}
```
More information about the Digitalmars-d
mailing list