当前位置: C语言 -- 标准库 -- <math.h> -- tan

tan函数


概要:
#include <math.h>
double tan(double x);

描述:

该函数计算参数x的正切值。

参数x应为弧度值;如果参数x为角度值,应乘上(π/180)转换成对应的弧度值。

数学上正切函数在(π/2)的奇数倍上存在奇点(singularities);如果参数x非常接近这些奇点,函数将会溢出。


参数:
double x

参数为一个double类型的浮点数。


返回值:

函数返回参数x的正切值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数tan范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    double value;
    double angle = 45.0;

    value = tan(angle*3.14/180.0);
    printf("The tangent of %d degrees is %.2f.\n", (int)angle, value);

    return 0;
}

输出:

The tangent of 45 degrees is 1.00.


相关内容:
tanf float类型的正切函数。
tanl long double类型的正切函数。