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