When in a "challenge" in the app sololearn, answering C# related questions against each other, the question was "Are the outputs below going to be the same?"
Console.Write(5 / 2 + 2.5); // 4.5
Console.Write(5.0 / 2 + 2.5); // 5
When I run it it indeed gets different results (shown as comments in the code). Why the outputs of below is not the same?