I'm trying to calculate the following equation in a C# console application:
double equation = 25 + -2 * 3 / 14;
Console.WriteLine(equation);
And the outcome is 25.
Which is not the accurate answer to the equation. Does anyone mind explaining to me what I have to do?