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


C++ tan()用法及代碼示例

C++ tan() 函數

tan() 函數是 cmath 頭文件的庫函數,用於求給定數字(角度)的切線,它接受一個數字(x) 並返回角度的正切x弧度。

tan() 函數的語法:

    tan(x);

參數: x– 是要計算其切線的弧度值。

返回值: double– 它返回雙精度值,即給定角度的切線x弧度。

例:

    Input:
    float x = 2.45;
    
    Function call:
    tan(x);    
    
    Output:
    -0.828017

C++代碼演示tan()函數的例子

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

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

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

    x = 0;
    cout<<"tan("<<x<<"):"<<tan(x)<<endl;    

    x = 2.45;
    cout<<"tan("<<x<<"):"<<tan(x)<<endl;    
    
    return 0;
}

輸出

tan(-10.23):-1.04045
tan(0):0
tan(2.45):-0.828017

參考:C++ tan() 函數



相關用法


注:本文由純淨天空篩選整理自 tan() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。