Computer Science, asked by SRIDHAR9962, 18 days ago

Quadratic equation Algorithm and flowchart in python assignment

Answers

Answered by girlherecrazy
0

Answer:

Input the value of a, b, c.Calculate k = b*b - 4*a*c.If (d < 0) Display "Roots are Imaginary, calculater1 = (-b +i ? k)/ 2a and r2 =(b + i? k)/ 2a. else if (d = 0) Display "Roots are Equal" and calculate r1 = r2 = (-b / 2*a) ... Print r1 and r2.End the algorithm.

Similar questions