-3

そこで、二次式を計算するプログラムを作成しようとしていますが、コードをコンパイルしようとすると、「未定義の 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);
  }
}
4

3 に答える 3

1

-lmリンク付きでコンパイルしましたか?

ヘッダー ファイルは、関数へのデカルレーションsqrt()を提供します。定義するにはmath、関数定義を構成するライブラリとリンクする必要があります。

例:

gcc test.c -o output -lm
于 2014-11-17T07:54:33.597 に答える