📅  最后修改于: 2020-10-18 11:37:11             🧑  作者: Mango
该函数计算以弧度表示的数字的反正切。
假设数字是“ x”。语法为:
float atan(float x);
double atan(double x);
long double atan(long double x);
double atan(integral x);
注意:如果传递的值是整数类型,则将其强制转换为double。
x:要计算其反切线的值。
它返回范围为[-∏ / 2,∏ / 2]的值。
让我们看一个简单的例子,当x的值为零时。
#include
#include
using namespace std;
int main()
{
float degree=0;
float x=degree*3.14/180;
std::cout << "Value of tangent is :" <
输出:
Value of tangent is :0
Inverse of tangent is :0
在此示例中,当x的值等于零时,atan()函数计算数字的反正切。
让我们看一个简单的例子,当x的值为负数时。
#include
#include
using namespace std;
int main()
{
float degree= -67;
float x=degree*3.14/180;
std::cout << "Value of tangent is : " <
输出:
Value of tangent is : -2.35197
Inverse of tangent is : -0.863063
在此示例中,当x的值为负时,atan()函数计算数字的反正切。
让我们看一个简单的例子,当x的值为正时。
#include
#include
using namespace std;
int main()
{
float degree=30;
float x=degree*3.14/180;
std::cout << "Value of tangent is : " <
输出:
Value of tangent is : 0.576996
Inverse of tangent is : 0.48214
在此示例中,当x的值为正时,atan()函数计算数字的反正切。