红颜如霜


私信TA

用户名:uq_88586478448

访问量:1009

签 名:

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

  自我简介:

解题思路:根据一元二次方程求根公式的三种情况,用switch语句来判断
注意事项:当求根公式<0时,i^2=-1,若为根号下的负数,可写为根号下该数的整数*i

参考代码:

#include<stdio.h>

#include<math.h>

void root1(int a,int b,int c)

{

    float x1,x2;

    x1=(-b+sqrt(b*b-a*c*4))/(2.0*a);

    x2=(-b-sqrt(b*b-a*c*4))/(2.0*a);

    printf("x1=%.3f x2=%.3f",x1,x2);

}

void root2(int a,int b,int c)

{

    float x1,x2;

    x1=x2=(-b+sqrt(b*b-a*c*4))/(2.0*a);

    printf("x1=%.3f x2=%.3f",x1,x2);

}

void root3(int a,int b,int c)

{

    printf("x1=%.3f+%.3fi ",-b/(2.0*a),sqrt(fabs(b*b-4*a*c))/(2.0*a));//这里i因为i^2=-1

    printf("x2=%.3f-%.3fi",-b/(2.0*a),sqrt(fabs(b*b-4*a*c))/(2.0*a));

}

int main()

{

    int a,b,c,x;

    scanf("%d %d %d",&a,&b,&c);

    if((b*b-a*c*4)>0) x=1;

    if((b*b-a*c*4)==0) x=2;

    if((b*b-a*c*4)<0) x=3;

    switch(x)

    {

        case 1:root1(a,b,c);break;

        case 2:root2(a,b,c);break;

        case 3:root3(a,b,c);break;

    }


return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »