C 库函数 - cos()

描述

C 库函数 double cos(double x) 返回弧度角 x 的余弦。

声明

下面是 cos() 函数的声明。

  1. double cos(double x)

参数

  • x — 浮点值,代表了一个以弧度表示的角度。

返回值

该函数返回 x 的余弦。

实例

下面的实例演示了 cos() 函数的用法。

  1. #include <stdio.h>
  2. #include <math.h>
  3. #define PI 3.14159265
  4. int main ()
  5. {
  6. double x, ret, val;
  7. x = 60.0;
  8. val = PI / 180.0;
  9. ret = cos( x*val );
  10. printf("%lf 的余弦是 %lf 度\n", x, ret);
  11. x = 90.0;
  12. val = PI / 180.0;
  13. ret = cos( x*val );
  14. printf("%lf 的余弦是 %lf 度\n", x, ret);
  15. return(0);
  16. }

让我们编译并运行上面的程序,这将产生以下结果:

  1. 60.000000 的余弦是 0.500000
  2. 90.000000 的余弦是 0.000000