Question: Write the pseudocode, an algorithm and draw a flowchart that will calculate the roots of a quadratic equation ax +bx+c=0 Hint: d = sqrt

Write the pseudocode, an algorithm and draw a flowchart that will calculate the roots of a quadratic equation ax +bx+c=0 Hint: d = sqrt (b-4ac), and the roots are: x1 = (-b+d)/2a and x2 = (-b-d)/2a Use the flowgorithm software to solve the problem. NOTE: Please use Flowgorithm software to solve this question not python. Thanks
Step by Step Solution
3.46 Rating (146 Votes )
There are 3 Steps involved in it
Pseudocode START Prompt the user to enter the values of a b and c Calculate the disc... View full answer
Get step-by-step solutions from verified subject matter experts
