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


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


C++ atan() 函数

atan() 函数是 cmath 头文件的库函数,用于求给定数的反正切的主值,它接受一个数 (x) 并返回反正切的主值x以弧度表示。

atan() 函数的语法:

    atan(x);

参数: x– 是要计算其反正切的值。

返回值: double– 它返回 double 类型的值,它是给定数字反正切的主值x

例:

    Input:
    float x = 0.65;
    
    Function call:
    atan(x);    
    
    Output:
    0.576375

C++代码演示atan()函数的例子

// C++ code to demonstrate the example of 
// atan() function

#include <iostream>
#include <cmath>
using namespace std;

// main() section
int main()
{
    float x;
    
    x = -1.0;
    cout<<"atan("<<x<<"):"<<atan(x)<<endl;

    x = -0.89;
    cout<<"atan("<<x<<"):"<<atan(x)<<endl;    

    x = 0.65;
    cout<<"atan("<<x<<"):"<<atan(x)<<endl;    

    x = 1;
    cout<<"atan("<<x<<"):"<<atan(x)<<endl;        
    
    return 0;
}

输出

atan(-1):-0.785398
atan(-0.89):-0.727263
atan(0.65):0.576375
atan(1):0.785398

参考:C++ atan() 函数



相关用法


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