解方程

Posted T技术沙龙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解方程相关的知识,希望对你有一定的参考价值。

 #include<stdio.h>
#include<math.h>
float x1,x2;
void sit1(float a,float b)

  x1=x2=-b/(2.*a);

void sit2(float a,float b,float disc)

  x1=(-b+sqrt(disc))/(2.*a);
  x2=(-b-sqrt(disc))/(2.*a);

void sit3(float a,float b,float disc)

  float realpart,imagepart;
  realpart=-b/(2.*a);
  imagepart=sqrt(-disc)/(2.*a);
  x1=realpart+imagepart;
  x2=realpart-imagepart;

void main()

  float a,b,c,disc;
  scanf("%f,%f,%f",&a,&b,&c);
  printf("The equation ");
  if(fabs(a)<=1e-6)
    printf("is not a quadratic/n");
  else
 
    disc=b*b-4.*a*c;
    if(fabs(disc)<=1e-6)
     
 sit1(a,b);
 printf("has two equal roots:%8.4f/n",x1);
     
    else
      if(disc>1e-6)
     
 sit2(a,b,disc);
 printf("has distinct real roots:%8.4f and %8.4f/n",x1,x2);
     
      else
     
 sit3(a,b,disc);
 printf("has complex roots: /n");
 printf("%8.4f/n",x1);
 printf("%8.4f/n",x2);
     
 

开发者涨薪指南 48位大咖的思考法则、工作方式、逻辑体系

以上是关于解方程的主要内容,如果未能解决你的问题,请参考以下文章

线性方程组——线性方程组解的结构

matlab解多元方程组?谢谢六元方程组

怎么用matlab解方程啊?

如何用matlab解方程组

线性方程组何时无解、有唯一解、有无穷多解问题

如何解2元一次方程