# “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](https://andreyakinshin.gitbook.io/problembookdotnet/en/math/eps-s)
