using System;
namespace New_Project
{ public static class Program
{ public static double y(double b, double x)
{ return x*Math.Sin(Math.Sqrt(x+b-0.0084)); }
public static void Main()
{ double a = -2.05, b = 3.4, dx = -0.2, x;
Console.WriteLine(" x y(x)");
Console.WriteLine("=========================");
for (int i = 0; i