다음을 통해 공유


sqrt, sqrtf, sqrtl

제곱근을 계산합니다.

double sqrt(    double x  ); float sqrt(    float x  );  // C++ only long double sqrt(    long double x );  // C++ only float sqrtf(    float x  ); long double sqrtl(    long double x  );

매개 변수

  • x
    음수가 아닌 부동 소수점 값

설명

C++에서는 오버로드를 허용하므로 float 또는 long double 형식을 사용하는 sqrt의 오버로드를 호출할 수 있습니다. C 프로그램에서 sqrt는 항상 double을 사용 및 반환합니다.

반환 값

sqrt 함수는 x의 제곱근을 반환합니다. 기본적으로 x가 음수이면 sqrt는 무한 NaN을 반환합니다.

입력

SEH 예외

_matherr 예외

± QNAN,IND

없음

_DOMAIN

- ∞

없음

_DOMAIN

x<0

없음

_DOMAIN

요구 사항

함수

C 헤더

C++ 헤더

sqrt, sqrtf, sqrtl

<math.h>

<cmath>

호환성에 대한 자세한 내용은 호환성을 참조하십시오.

예제

// crt_sqrt.c
// This program calculates a square root.

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

int main( void )
{
   double question = 45.35, answer;
   answer = sqrt( question );
   if( question < 0 )
      printf( "Error: sqrt returns %f\n", answer );
   else
      printf( "The square root of %.2f is %.2f\n", question, answer );
}
  

해당 .NET Framework 항목

System::Math::Sqrt

참고 항목

참조

부동 소수점 지원

exp, expf

log, logf, log10, log10f

pow, powf, powl

_CIsqrt