当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ atan()用法及代码示例


C++ 中的atan() 函数以弧度返回数字(参数)的反正切。

该函数在<cmath> 头文件中定义。

[Mathematics] tan-1x = atan(x) [In C++ Programming];

atan() 原型 [从 C++ 11 标准开始]

double atan(double x);
float atan(float x);
long double atan(long double x);
double atan (T x); // For integral type

参数:

atan() 函数采用单个强制参数(可以是正数、负数或零)

返回:

atan() 函数返回 [-π/2, π/2] 范围内的值。

示例 1:atan() 如何工作?

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
  double x = 57.74, result;
  result = atan(x);
  
  cout << "atan(x) = " << result << " radians" << endl;
  
  // Output in degrees
  cout << "atan(x) = " << result*180/3.1415 << " degrees" << endl;
  
  return 0;
}

运行程序时,输出将是:

atan(x) = 1.55348 radians
atan(x) = 89.0104 degrees

示例 2:atan() 具有整数类型的函数

#include <iostream>
#include <cmath>
#define PI 3.141592654

using namespace std;

int main()
{
  int x = 14;
  double result;
  
  result = atan(x);
  
  cout << "atan(x) = " << result << " radians" << endl;
  // Output in degrees
  cout << "atan(x) = " << result*180/3.1415 << " degrees" << endl;
  
  return 0;
}

运行程序时,输出将是:

atan(x) = 1.49949 radians
atan(x) = 85.9169 degrees

相关用法


注:本文由纯净天空筛选整理自 C++ atan()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。