小楼寂寞新雨月 发表于 2014-9-13 16:59:23

C标准库之数学函数atan

功能:求反正切值

函数原型:double atan(double x);

要求:
函数需要的头文件
atan<math.h>
参数:
参数说明
x双精度弧度值
返回值:参数的反正切值
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double m = 0.5,n;            //为变量赋初值
n = atan(m) ;                //求m的反正切值
printf("%f\n",n);
}



页: [1]
查看完整版本: C标准库之数学函数atan