atan()函数atan()函数是cmath标头的库函数,用于查找给定数字的反正切的主值,它接受数字(x)并以弧度返回x的反正切的主值。
atan()函数语法:
atan(x);
参数: x –是要计算其反正切值的值。
返回值: double-返回double型值,它是给定数字x的反正切的主要值。
示例
Input: float x = 0.65; Function call: atan(x); Output: 0.576375
atan()函数示例//示例 
// atan()功能
#include <iostream>
#include <cmath>
using namespace std;
// main()部分
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()函数