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

acos函数


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

描述:

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

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


参数:
double x

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


返回值:

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


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

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

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

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

    return 0;
}

输出:

The arc cosine of 0.70 is 45 degrees.


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