double x = 0.96;
double DegCos = ((1.5 * x) * 180.0) / Math.PI;
double DegSin = ((x + (5.0 / 3.0) * 180.0) / Math.PI);
double y = Math.Cos(DegCos) - Math.Pow(Math.E, Math.Sin(DegSin)) + Math.Sqrt(x + (7.0 / 6.0));
Console.WriteLine(" x = {0} \t y = {1} ", x, y);
Console.ReadKey();