C语言 acos() 函数用于求反余弦。
头文件:math.h
语法/原型:
参数 x 是一个弧度值。
返回值:参数的反余弦值。
【实例】C语言 acos() 函数求 0.5 的反余弦值。
#include<stdio.h>
#include<math.h>
int main()
{
double m = 0.5, n; //为变量赋初值
n = acos(m); //求m的反余弦值
printf("%lf\n", n);
return 0;
}
运行结果:1.047198