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

acosl函数


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

描述:

该函数计算参数x的反余弦值。

如果参数x不在区间[-1,+1]内,将发生域错误。


参数:
long double x

参数为一个long double类型的浮点数,取值范围为-1≤x≤1


返回值:

函数返回参数x的反余弦值,返回值为区间[0,π]内的弧度值。


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

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

int main(void)
{
    long double value = 0.7L;
    long double angle;

    angle = acosl(value)*180.0L/3.14L;
    printf("The arc cosine of %.2Lf is %d degrees.\n", value, (int)angle);

    return 0;
}

输出:

The arc cosine of 0.70 is 45 degrees.


相关内容:
acos double类型的反余弦函数。
acosf float类型的反余弦函数。