当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。