首页 > 编程笔记 > C语言笔记 > C语言函数大全 阅读:341

C语言acos()函数:求反余弦

C语言 acos() 函数用于求反余弦。

头文件:math.h

语法/原型:

double acos(double x);

参数 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

所有教程

优秀文章