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 );
}