C 庫(kù)函數(shù) - cos()
C 標(biāo)準(zhǔn)庫(kù) - <math.h>
描述
C 庫(kù)函數(shù) double cos(double x) 返回弧度角 x 的余弦。
聲明
下面是 cos() 函數(shù)的聲明。
double cos(double x)
參數(shù)
- x -- 浮點(diǎn)值,代表了一個(gè)以弧度表示的角度。
返回值
該函數(shù)返回 x 的余弦。
實(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 度
更多建議: