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

cos函数


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

描述:

该函数计算参数x的余弦值。

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


参数:
double x

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


返回值:

函数返回参数x的余弦值。


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

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

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

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

    return 0;
}

输出:

The cosine of 60 degrees is 0.50.


相关内容:
cosf float类型的余弦函数。
cosl long double类型的余弦函数。