C语言求二次方程根的程序

要理解这个示例,您应该了解以下 C 编程 主题


二次方程的标准形式是

ax2 + bx + c = 0, where
a, b and c are real numbers and
a != 0

术语b2; - 4ac被称为二次方程的**判别式**。它决定了根的性质。

  • 如果判别式大于0,则根为实数且不相等。
  • 如果判别式等于0,则根为实数且相等。
  • 如果判别式小于0,则根为复数且不相等。
Formula to compute the 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;
} 

输出

Enter coefficients a, b and c: 2.3
4
5.6
root1 = -0.87+1.30i and root2 = -0.87-1.30i

在此程序中,sqrt()库函数用于查找数字的平方根。要了解更多信息,请访问:sqrt()函数

你觉得这篇文章有帮助吗?

我们的高级学习平台,凭借十多年的经验和数千条反馈创建。

以前所未有的方式学习和提高您的编程技能。

试用 Programiz PRO
  • 交互式课程
  • 证书
  • AI 帮助
  • 2000+ 挑战