求教一道C语言题目
用C语言求ax²+bx+c=0的根。分别考虑的d=b²-4ac大于0、等于0和小于0这3种情况...
用C语言求ax²+bx+c=0的根。分别考虑的d=b²-4ac大于0、等于0和小于0这3种情况
展开
3个回答
展开全部
展开全部
#include<stdio.h>
#include<math.h>
int main(void) //求方程ax^2+bx+c=0的解
{
float a,b,c,disc,x1,x2,realpart,imagpart;
scanf("%f,%f,%f",&a,&b,&c);
printf("The equation");
if(fabs(a)<=1e-6) //a=0,此方程不为二元一次方程,fabs()为求绝对值函数
printf("is not a quadratic\n");
else
{
disc=b*b-4*a*c;
if(fabs(disc)<=1e-6) //disc=0,方程有两个相等的实数根
printf("has two equal roots:%8.4f\n",-b/(2*a));
else if(disc>1e-6) //disc>0,方程有两个不相等的实数根
{
x1=(-b+sqrt(disc))/(2*a); //sqrt()为开平方根函数
x2=(-b-sqrt(disc))/(2*a);
printf("has distinct real roots:%8.4f and %8.4f\n",x1,x2);
}
else //disc<0,方程有两个虚根
{
realpart=-b/(2*a);
imagpart=sqrt(-disc)/(2*a);
printf("has complex roots: \n");
printf("%8.4f+%8.4fi\n",realpart,imagpart);
printf("%8.4f-%8.4fi\n",realpart,imagpart);
}
}
}
书上例题做练习时留下的
#include<math.h>
int main(void) //求方程ax^2+bx+c=0的解
{
float a,b,c,disc,x1,x2,realpart,imagpart;
scanf("%f,%f,%f",&a,&b,&c);
printf("The equation");
if(fabs(a)<=1e-6) //a=0,此方程不为二元一次方程,fabs()为求绝对值函数
printf("is not a quadratic\n");
else
{
disc=b*b-4*a*c;
if(fabs(disc)<=1e-6) //disc=0,方程有两个相等的实数根
printf("has two equal roots:%8.4f\n",-b/(2*a));
else if(disc>1e-6) //disc>0,方程有两个不相等的实数根
{
x1=(-b+sqrt(disc))/(2*a); //sqrt()为开平方根函数
x2=(-b-sqrt(disc))/(2*a);
printf("has distinct real roots:%8.4f and %8.4f\n",x1,x2);
}
else //disc<0,方程有两个虚根
{
realpart=-b/(2*a);
imagpart=sqrt(-disc)/(2*a);
printf("has complex roots: \n");
printf("%8.4f+%8.4fi\n",realpart,imagpart);
printf("%8.4f-%8.4fi\n",realpart,imagpart);
}
}
}
书上例题做练习时留下的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这道题很多书上都是作为习题来讲的。
追问
我们做为作业来教
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |