描述
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 = PI / 180.0;
ret = cos( x*val );
printf("The cosine of %lf is %lf degrees\n", x, ret);
x = 90.0;
val = PI / 180.0;
ret = cos( x*val );
printf("The cosine of %lf is %lf degrees\n", x, ret);
return(0);
}
让我们编译并运行上面的程序,它会产生以下结果——
The cosine of 60.000000 is 0.500000 degrees The cosine of 90.000000 is 0.000000 degrees
相关用法
- C语言 cosh()用法及代码示例
- C语言 clock()用法及代码示例
- C语言 ctime()用法及代码示例
- C语言 cleardevice()用法及代码示例
- C语言 ceil()用法及代码示例
- C语言 calloc()用法及代码示例
- C语言 closegraph()用法及代码示例
- C语言 clearerr()用法及代码示例
- C语言 宏 assert()用法及代码示例
- C语言 vprintf()用法及代码示例
- C语言 宏 va_start()用法及代码示例
- C语言 setlocale()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 sinh()用法及代码示例
- C语言 宏 offsetof()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 scanf()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 getarcoords()用法及代码示例
- C语言 isdigit()用法及代码示例
注:本文由纯净天空筛选整理自 C library function - cos()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。