求方程ax2 bx c =0的根 用3个函数分别求当: C语言编程

2016-06-17 17:03:12  分类: c程序设计第四版谭浩强课后答案  参与:

 求方程ax2+bx+c=0的根.用三个函数分别求当:b2-4ac大于0、等于0和小于0时的根并输出结果。在主程序中输入a,b,c的值。

谭浩强c语言程序设计第四版答案
【c源程序】

#include <stdio.h>
#include <math.h>
float x1,x2,disc,p,q;
int main()
{void greater_than_zero(float,float);
 void equal_to_zero(float,float);
 void smaller_than_zero(float,float);
 float a,b,c;
 printf("input a,b,c:");
 scanf("%f,%f,%f",&a,&b,&c);
 printf("equation: %5.2f*x*x+%5.2f*x+%5.2f=0\n",a,b,c);
 disc=b*b-4*a*c;
 printf("root:\n");
 if (disc>0)
  {
   greater_than_zero(a,b);
   printf("x1=%f\t\tx2=%f\n",x1,x2);
  }
 else if (disc==0)
  {equal_to_zero(a,b);
   printf("x1=%f\t\tx2=%f\n",x1,x2);
  }
 else
  {smaller_than_zero(a,b);
   printf("x1=%f+%fi\tx2=%f-%fi\n",p,q,p,q);
  }
 return 0;
}

void greater_than_zero(float a,float b)
 {x1=(-b+sqrt(disc))/(2*a);
  x2=(-b-sqrt(disc))/(2*a);
 }

void equal_to_zero(float a,float b)
 {
  x1=x2=(-b)/(2*a);
 }

void smaller_than_zero(float a,float b)
 {
  p=-b/(2*a);
  q=sqrt(-disc)/(2*a);
 }


来源:c程序设计第四版谭浩强课后答案

本文链接:http://www.wb98.com/c/post/tanhaoqiang_7.2.html

本站文章搜索:

<< 上一篇下一篇 >>

搜索

网站分类

Tags列表

赞助商链接