public static void Main()
Console.WriteLine("Enter a value for x");
Double x = Convert.ToDouble(Console.ReadLine());
Double y = Math.Pow(x, 4.0) + Math.Pow(x, 3.0) - Math.Pow(x, 2.0) * 7 - x + 6;
Console.WriteLine(" The Value " + x + " IS a root of the equation.");
Console.WriteLine(" The Value " + x + " IS NOT a root of the equation.");