Sqrt功能不起作用

时间:2014-11-17 07:53:20

标签: c sqrt libm

所以我试图制作一个计算二次公式的程序,但是当我尝试编译代码时,我得到以下内容:"对sqrt"未定义的引用 但我尝试通过math.h定义sqrt,并在代码中另外两次。 我附上了我的代码 任何帮助将不胜感激

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

double sqrt(double);

int main (void) {
  double sqrt(double);
  int a,b,c;
  double discriminant,squarerootofdis,root1, root2;
  printf("Please enter the coefficient of x^2:");
  scanf("%d",&a);
  printf("Please enter the coefficient of x:");
  scanf("%d",&b);
  printf("Please enter the integer value of the ploynomial:");
  scanf("%d",&c);
  if (a==0 && b==0)
    {printf("This case is extremely degenerate");}
  else if (a==0 && b!=0)
    {root1=-c/b;
      printf("Degenerate     one real root: %lf\n",root1);}
  else{
    discriminant = ((b*b)-(4*a*c)); 
    squarerootofdis = sqrt(discriminant);
    root1 = (squarerootofdis-b)/(2*a);
    root2 = (-squarerootofdis-b)/(2*a);
    if (discriminant>0)
      printf("Two real roots: %lf\n %lf\n", root1, root2);
    else if (discriminant == 0)
      printf("Degenerate     one real root: %lf\n",root1);
    else if (discriminant<0)
      printf("Two complex roots: %lf\n %lf\n", root1, root2);
  }
}

3 个答案:

答案 0 :(得分:2)

要使用sqrt功能(或math.h中定义的任何功能),您必须链接m库:

~$ gcc -lm yourcode.c -o program

答案 1 :(得分:1)

您是否使用-lm链接进行编译?

头文件将为sqrt()函数提供 decalration 。要拥有定义,您需要链接包含函数定义的math库。

示例:

gcc test.c -o output -lm

答案 2 :(得分:0)

请使用以下命令

gcc test.c -lmath