cos() - C函式


C庫函式double cos(double x) 返回一個弧度角x的餘弦值。

宣告

以下是cos()函式的宣告。 

double cos(double x)

引數

  • x -- 這是浮點值同比弧度表示的角度。

返回值

這個函式返回x的餘弦。

範例

下面的例子顯示了cos()函式的用法。

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

#define PI 3.14159265

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

   x = 60.0;
   val = 180.0 / PI;
   ret = cos( x*val );
   printf("The cosine of %lf is %lf degrees
", x, ret);
   
   x = 90.0;
   val = 180.0 / PI;
   ret = cos( x*val );
   printf("The cosine of %lf is %lf degrees
", x, ret);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

The cosine of 60.000000 is 0.664171 degrees
The cosine of 90.000000 is -0.299510 degrees