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