C标准库之数学函数cos
本帖最后由 小楼寂寞新雨月 于 2014-9-13 17:16 编辑功能:求余弦值函数值
函数原型:double cos(double x);
要求:
函数需要的头文件
cos<math.h>
参数:
参数说明
x弧度值
返回值:余弦函数值
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double pi = 3.1415926 ; //为变量赋初值
double m = pi/4,n ; //为变量赋初值
n = cos(m) ; //求m的余弦函数值
printf("%f\n",n);
}
页:
[1]