Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C program, to solve the quadratic equation a x 2 + b x + c = 0 of given coefficients a, b and

Write a C program, to solve the quadratic equation a x2 + b x + c = 0 of given coefficients a, b and c. When running the program, it prompts for the input of coefficients a,b,c as floating numbers. After inputting three floating numbers, it computes and prints out the solutions, then prompts for another round of input. Your program will quit when getting input 0,0,0. Your program should handle four situations: (1) a=0, not a quadratic equation; (2) b2 - 4ac = 0, the equation has two equal roots; (3) b2 - 4ac < 0, the equation has complex roots; (4) b2 - 4ac > 0, the equation has distinct real roots. Your program should be robust for invalid inputs.

output:

Please enter the coefficients a,b,c: 1,2,1 The equation has two equal real roots: -1.000000 Please enter the coefficients a,b,c: 1,2,2 The equation has two complex roots: -1.000000+1.000000i -1.000000-1.000000i Please enter the coefficients a,b,c: 2,6,1 The equation has two distinct real roots: -0.177124 -2.822875 Please enter the coefficients a,b,c: a,b,c Invalid input Please enter the coefficients a,b,c: 1,2 Invalid input Please enter the coefficients a,b,c: 0,1,2 not a quadratic equation Please enter the coefficients a,b,c: 0,0,0 Goodbye

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

describe the main employment rights as stated in the law

Answered: 1 week ago