Console.Write("Nhap a : ");
Console.Write("Nhap b : ");
Console.Write("Nhap c : ");
x1=(-b + Math.Sqrt(delta))/2/a;
x2=(-b - Math.Sqrt(delta))/2/a;
Console.WriteLine("Phuong trinh vo nghiem ");
Console.WriteLine("Phuong trinh co 2 nghiem thuc: ");
Console.WriteLine("X1 = " + x1);
Console.WriteLine("X2 = " + x2);
public static void Main()