當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。