C标准库之数学函数acos
本帖最后由 小楼寂寞新雨月 于 2014-9-16 08:44 编辑功能:求反余弦值
函数原型:double acos(double x);
要求:
函数需要的头文件
acos<math.h>
参数:
参数说明
x双精度弧度值
返回值:参数的反余弦值
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double m = 0.5,n; //为变量赋初值
n = acos(m) ; //求m的反余弦值
printf("%f\n",n);
}
页:
[1]