C Program To Find The Roots Of A Quadratic Equation - Programiz
C Program to Find the Roots of a Quadratic Equation
Figure: Roots of a Quadratic Equation
To understand this example, you should have the knowledge of the following C programming topics:
- C Programming Operators
- C if...else Statement
The standard form of a quadratic equation is:
ax2 + bx + c = 0, where a, b and c are real numbers and a != 0The term b2; - 4ac is known as the discriminant of a quadratic equation. It tells the nature of the roots.
- If the discriminant is greater than 0, the roots are real and different.
- If the discriminant is equal to 0, the roots are real and equal.
- If the discriminant is less than 0, the roots are complex and different.
Program to Find Roots of a Quadratic Equation
#include <math.h> #include <stdio.h> int main() { double a, b, c, discriminant, root1, root2, realPart, imagPart; printf("Enter coefficients a, b and c: "); scanf("%lf %lf %lf", &a, &b, &c); discriminant = b * b - 4 * a * c; // condition for real and different roots if (discriminant > 0) { root1 = (-b + sqrt(discriminant)) / (2 * a); root2 = (-b - sqrt(discriminant)) / (2 * a); printf("root1 = %.2lf and root2 = %.2lf", root1, root2); } // condition for real and equal roots else if (discriminant == 0) { root1 = root2 = -b / (2 * a); printf("root1 = root2 = %.2lf;", root1); } // if roots are not real else { realPart = -b / (2 * a); imagPart = sqrt(-discriminant) / (2 * a); printf("root1 = %.2lf+%.2lfi and root2 = %.2f-%.2fi", realPart, imagPart, realPart, imagPart); } return 0; }Output
Enter coefficients a, b and c: 2.3 4 5.6 root1 = -0.87+1.30i and root2 = -0.87-1.30iIn this program, the sqrt() library function is used to find the square root of a number. To learn more, visit: sqrt() function.
Từ khóa » C 0
-
What Is "{0}" In C? - Stack Overflow
-
What Does "C" In C=0 Mean? - The Elsmar Cove
-
The Quadratic Formula Explained - Purplemath
-
How To Establish Sample Sizes For Process Validation Using C0 ...
-
All Pro Player Crosshair Codes In VALORANT - Dot Esports
-
Smoothness - Wikipedia
-
If - A, B, C - Are All Non-zero And - Toppr
-
If A + B + C = 0, The A^2/bc + B^2/ca + C^2/ab Is Equal To . - Toppr
-
BioMath: Quadratic Functions - The Biology Project
-
16) And C (0, – 7) Lie On The Graph Of The Linear Equation Y = 9x
-
Derivation Of Quadratic Formula - Math Is Fun