描述
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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。