当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 acos()用法及代码示例


此函数提供计算数字反余弦的函数。数字应小于等于 1 且大于等于 0。

该函数以单个参数作为需要计算其反余弦值的数,并返回计算结果的值。

例:

    X = 0.2
    The function will return 1.369438 

该函数是math.h在使用此函数之前应包含在程序中的库。

math.h - C 中的 acos() 函数示例


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

int main()
{
	// Defining variables
	double a,b;

	// Assigning value for getting acos value
	a = 0.2;

	// Calculating the arc cosine of a
	b = acos(a);

	// Displaying the result for the user
	printf("The calculated value is:%lf \n\n", b);

	return 0;
}

输出

math.h - acos()  in c language



相关用法


注:本文由纯净天空筛选整理自Manu Jemini大神的英文原创作品 acos() function of math.h in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。