atan可返回數字的反正切值。
基本介紹
- 中文名:可返回數字的反正切值
- 外文名:atan
- 功 能:: 反正切函式(C++)
- 用 法:: double atan(double x);
函式信息
程式例
#include<stdio.h>#include<math.h>int main(){double result;double x=0.5;result=atan(x);printf("The arctangent of%lfis%lf\n",x,result);return 0;}
#include<iostream>#include<cmath>using namespace std;int main(){ const double pi=4.0*atan(1.0); printf("%lf",pi*1); return 0;}
其他
javascript
<scripttype="text/javascript">document.write(Math.atan(0.50)+"<br/>")document.write(Math.atan(-0.50)+"<br/>")document.write(Math.atan(5)+"<br/>")document.write(Math.atan(10)+"<br/>")document.write(Math.atan(-5)+"<br/>")document.write(Math.atan(-10))</script>