dotcpp0678717


私信TA

用户名:dotcpp0678717

访问量:82

签 名:

等  级
排  名 35299
经  验 435
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

三个函数,g1 g2 g3

主函数进行判断

注意事项:
1,变量类型 double,输出三位小数

2,#include<math.h>

3,g3中的输出表示


参考代码:

#include<stdio.h>
#include<math.h>

void g1(double a,double b,double c);
void g2(double a,double b,double c);
void g3(double a,double b,double c);

int main()
{
	double a,b,c;
	scanf("%lf %lf %lf",&a,&b,&c);
	
	if((pow(b,2)-4*a*c)==0) g1(a,b,c);
	else if((pow(b,2)-4*a*c)>0) g2(a,b,c);
	else g3(a,b,c);
	
	return 0;
}

void g1(double a,double b,double c)
{
    double x1,x2;
    x1=-b/(2*a);
    x2=-b/(2*a);
    printf("x1=%.3lf x2=%.3lf",x1,x2);
}

void g2(double a,double b,double c)
{
    double x1,x2;
    x1=(-b+sqrt(pow(b,2)-4*a*c))/(2*a);
    x2=(-b-sqrt(pow(b,2)-4*a*c))/(2*a);
    printf("x1=%.3lf x2=%.3lf",x1,x2);
}
void g3(double a,double b,double c)
{
    double m,n;
    m=(-b)/(2*a);
    n=(sqrt(4*a*c-pow(b,2)))/(2*a);
    printf("x1=%.3lf+%.3lfi x2=%.3lf-%.3lfi",m,n,m,n);
}


 

0.0分

1 人评分

  评论区

  • «
  • »