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() 函數
相關用法
- C++ complex atan()用法及代碼示例
- C++ complex atanh()用法及代碼示例
- C++ atanh()用法及代碼示例
- C++ atan2()用法及代碼示例
- C++ atexit()用法及代碼示例
- C++ atof()用法及代碼示例
- C++ atol()用法及代碼示例
- C++ atoll()用法及代碼示例
- C++ at_quick_exit()用法及代碼示例
- C++ atoi()用法及代碼示例
- C++ any_of()用法及代碼示例
- C++ acos()用法及代碼示例
- C++ abort()用法及代碼示例
- C++ complex acosh()用法及代碼示例
- C++ array at()用法及代碼示例
- C++ array::fill()、array::swap()用法及代碼示例
- C++ array::operator[]用法及代碼示例
- C++ array::size()用法及代碼示例
- C++ array::rbegin()、array::rend()用法及代碼示例
- C++ complex abs()用法及代碼示例
注:本文由純淨天空篩選整理自 atan() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。