用c语言编写程序,由键盘输入一元二次方程ax^2+bx+c=0 (a不等于0)的a、b、c的值,求方程的解
时间: 2023-06-01 10:06:33 浏览: 260
好的,这是一道数学问题,我可以回答。这个程序可以使用C语言中的数学库函数来解决。可以使用sqrt()函数计算平方根,并且使用pow()函数来计算次方。以下是基本的程序框架,在输入a、b、c的值后,可以计算出方程的解。
```c
#include <stdio.h>
#include <math.h>
int main()
{
double a, b, c, discriminant, root1, root2, realPart, imaginaryPart;
printf("输入a, b, c的值:\n");
scanf("%lf %lf %lf",&a, &b, &c);
discriminant = b*b - 4*a*c;
if (discriminant > 0)
{
root1 = (-b + sqrt(discriminant)) / (2*a);
root2 = (-b - sqrt(discriminant)) / (2*a);
printf("方程有两个不相等的实根:root1 = %.2lf and root2 = %.2lf", root1, root2);
}
else if (discriminant == 0)
{
root1 = root2 = -b / (2*a);
printf("方程有两个相等的实根:root1 = root2 = %.2lf;", root1);
}
else
{
realPart = -b / (2*a);
imaginaryPart = sqrt(-discriminant) / (2*a);
printf("方程有两个共轭复根:root1 = %.2lf + %.2lfi and root2 = %.2lf - %.2lfi", realPart, imaginaryPart, realPart, imaginaryPart);
}
return 0;
}
```
希望我的回答可以帮助到您。
阅读全文