sin() - C函式


C庫函式double sin(double x) 返回一個弧度角x的正弦。

宣告

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

double sin(double x)

引數

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

返回值

這個函式返回x的正弦。

例子

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

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

#define PI 3.14159265

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

   x = 45.0;
   val = PI / 180;
   ret = sin(x*val);
   printf("The sine of %lf is %lf degrees", x, ret);
   
   return(0);
}

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

The sine of 45.000000 is 0.707107 degrees