> For the complete documentation index, see [llms.txt](https://andreyakinshin.gitbook.io/problembookdotnet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andreyakinshin.gitbook.io/problembookdotnet/en/math/eps-p.md).

# “Eps” (Problem)

What will the following code display?

```csharp
Console.WriteLine("0.1 + 0.2 {0} 0.3",
  0.1 + 0.2 == 0.3 ? "==" : "!=");
```

[Solution](/problembookdotnet/en/math/eps-s.md)
