Write a program to compute the real roots of a quadratic


write a program to compute the real roots of a quadratic equation (ax^2 + bx + c = 0 ). The roots can be calculated using the following formulas:

x1 = (-b + sqrt(b2 - 4ac))/2a

and

x2 = (-b - sqrt(b2 - 4ac))/2a

Request for Solution File

Ask an Expert for Answer!!
Other Subject: Write a program to compute the real roots of a quadratic
Reference No:- TGS0602858

Expected delivery within 24 Hours