当前位置: C语言 -- 标准库 -- <math.h> -- sqrtl

sqrtl函数


概要:
#include <math.h>
long double sqrtl(long double x);

描述:

该函数计算参数x的平方根。

如果参数x小于0,将发生域错误。


参数:
long double x

参数为一个long double类型的浮点数。


返回值:

函数返回x 的值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数sqrtl范例*/

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

int main(void)
{
    long double x = 9.0L;
    long double y;

    y = sqrtl(x);
    printf("The square root of %.6Lf is %.6Lf.\n", x, y);

    return 0;
}

输出:

The square root of 9.000000 is 3.000000.


相关内容:
sqrt double类型的平方根函数。
sqrtf float类型的平方根函数。