public static void Main()
Console.WriteLine("ادخل 3 ارقام");
a=double.Parse(Console.ReadLine());
b=double.Parse(Console.ReadLine());
c=double.Parse(Console.ReadLine());
x1=(1*-b-(Math.Sqrt(Math.Pow(b,2)-(4*a*c)))/(2*a));
x2=(1*-b+(Math.Sqrt(Math.Pow(b,2)-(4*a*c)))/(2*a));
Console.WriteLine("لا يوجد نقاط تقاطع مع محور x فقط راس الداله التي y فيها0");
Console.WriteLine("x1={0} and x2={1}",x1,x2);