C++ cmath atan() 函数
例子
返回不同数字的反正切
cout << atan(0.5);
cout << atan(-0.5);
cout << atan(5);
cout << atan(-5);
cout << atan(100);
cout << atan(-100);
自己试试 »
定义和用法
The atan()
函数返回一个数字的反正切,以弧度为单位。
The atan()
函数在 <cmath>
头文件中定义。
提示: atan() 函数只返回 -PI/2 到 PI/2 之间的角度。The atan2() 函数可以返回任何角度。
语法
以下之一
atan(double number);
atan(float number);
参数值
参数 | 描述 |
---|---|
number | 必需。指定一个数字。如果数字是整数类型,则将被视为 double 。 |
技术细节
返回值 | A float value (如果参数是 float) 或 double value (在任何其他情况下) 代表数字的反正切。 |
---|