求方程a*2+bx+c=0的根,用3个函数分别求当b2-4ac大于0
、等于0和小于0时的根并输出结果,从主函数输入a、b、c的值
会计算机c语言的帮帮忙
答案:1 悬赏:30 手机版
解决时间 2021-04-30 05:24
- 提问者网友:兔牙战士
- 2021-04-29 13:50
最佳答案
- 五星知识达人网友:杯酒困英雄
- 2021-04-29 15:14
#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
int a,b ,c;
float x1,x2;
clrscr();
printf("enter the a,b&c ");
scanf("%d%d%d",&a,&b,&c);
if(b*b-4*a*c>=0)
{
x1=(-b+sqrt(b*b-4*a*c))/(2*a);
x2=(-b-sqrt(b*b-4*a*c))/(2*a);
printf("the first answer is %f,the second answer is %f",x1,x2);
}
else
printf("no answer");
getch();
}
#include<conio.h>
#include<math.h>
main()
{
int a,b ,c;
float x1,x2;
clrscr();
printf("enter the a,b&c ");
scanf("%d%d%d",&a,&b,&c);
if(b*b-4*a*c>=0)
{
x1=(-b+sqrt(b*b-4*a*c))/(2*a);
x2=(-b-sqrt(b*b-4*a*c))/(2*a);
printf("the first answer is %f,the second answer is %f",x1,x2);
}
else
printf("no answer");
getch();
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯