cos函数
概要:
#include <math.h> double cos(double x);
描述:
该函数计算参数x的余弦值。
参数x应为弧度值;如果参数x为角度值,应乘上(π/180)转换成对应的弧度值。
参数:
double x
参数为一个double类型的浮点数。
返回值:
函数返回参数x的余弦值。
范例:
|
|
输出:
The cosine of 60 degrees is 0.50.
相关内容:
cosf | float类型的余弦函数。 |
cosl | long double类型的余弦函数。 |