Results (
Vietnamese) 1:
[Copy]Copied!
Design and code a C function named roots that calculates the roots of a quadratic equation. Your function receives three doubles that hold the coefficients of the quadratic equation and returns through two other double parameters the real roots of the equation. The function returns the number of real roots as the return value of the function itself. The header for your function looks something like int roots(double a, double b, double c, double *x1, double *x2) Consider the quadratic equation: f(x) = a * x2 + b * x + c where a, b and c are constant coefficients. This equation may have up to 2 real roots. The roots are the values of x for which a * x2 + b * x + c = 0The roots are given by the equations x1 = ( - b + sqrt( D ) ) / ( 2 * a ) x2 = ( - b - sqrt( D ) ) / ( 2 * a )where D is the discriminant D = b2 - 4 * a * cIf D is positive-valued, there are 2 real roots. If D is zero-valued, there is one real root. If D is negative-valued, there are no real roots. If there is one real root, set x1 to its value and leave x2 unchanged. If there are no real roots, leave x1 and x2 unchanged. The output from your program looks something like
Being translated, please wait..
