public static void Main()
double targetValue = -0.575;
double targetValue1 = 0.575;
double targetValue2 = -0.865;
double targetValue3 = 0.865;
Console.Write(Math.Round(targetValue, 2, MidpointRounding.AwayFromZero) + Environment.NewLine);
Console.Write(Math.Round(targetValue1, 2, MidpointRounding.AwayFromZero)+ Environment.NewLine);
Console.Write(Math.Round(targetValue2, 2, MidpointRounding.AwayFromZero)+ Environment.NewLine);
Console.Write(Math.Round(targetValue3, 2, MidpointRounding.AwayFromZero)+ Environment.NewLine);