黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

C語言 庫函數(shù) cos()

C語言 庫函數(shù) cos()

C 標(biāo)準(zhǔn)庫 - <math.h>C 標(biāo)準(zhǔn)庫 - <math.h>

C 庫函數(shù) double cos(double x) 返回弧度角 x 的余弦。

 

1. 聲明

下面是 cos() 函數(shù)的聲明。

double cos(double x)

 

2. 參數(shù)

  • x -- 浮點(diǎn)值,代表了一個以弧度表示的角度。

 

3. 返回值

該函數(shù)返回 x 的余弦。

 

4. 實(shí)例

下面的實(shí)例演示了 cos() 函數(shù)的用法。

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

#define PI 3.14159265

int main ()
{
   double x, ret, val;

   x = 60.0;
   val = PI / 180.0;
   ret = cos( x*val );
   printf("%lf 的余弦是 %lf 度\n", x, ret);
   
   x = 90.0;
   val = PI / 180.0;
   ret = cos( x*val );
   printf("%lf 的余弦是 %lf 度\n", x, ret);
   
   return(0);
}

讓我們編譯并運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:

60.000000 的余弦是 0.500000 度
90.000000 的余弦是 0.000000 度

C 標(biāo)準(zhǔn)庫 - <math.h>C 標(biāo)準(zhǔn)庫 - <math.h>

下一節(jié):C 庫函數(shù) cosh()

C 簡介

相關(guān)文章