函数名: sin 头文件:<math.h> 函数原型: double sin(double x); 功能: 正弦函数 参数: double x 操作的弧度 返回值: 返回弧度的正弦值 公式:1°=π/180°弧度 程序例: 求30度角的正弦值,并将结果输出 1 2 3 4 5 6 7 8 9 10 11
C语⾔sinh()函数:双曲正⽞函数 头⽂件:#include <math.h> sinh() ⽤来求双曲正弦值,其原型为:double sinh(double x);【参数】x 为即将被计算的值。双曲正弦的定义为:(exp(x)-exp(-x))/2,即 双曲线⽰意图如下:【返回值】返回参数x 的双曲正⽞值。如果返回值过⼤,将返回 HUGE_...
8 我们可以按F5键去运行这段程序,会看到如下的结果,即90弧度的正弦值约为0.893997
/*泰勒公式求sin(x)*/#include <stdio.h>int main() {double x,s1,e,s=0;int n=1;e=0.000001; /*误差上限位六位小数*/printf("求sin(x)\n请输入x(弧度):");scanf("%lf",&x); s1=x;do {s+=s1; /*s1为中间变量*/s1=-s1*x*x/(n+1)/(n+2); n+=2;} while (...
1、C语言中要编写sin函数,实质上要利用sin的泰勒公式,然后根据泰勒公式,将其中的每一项进行分解,最后用循环,累加计算出最终结果。2、下面用for循环实现sin的算法,程序代码如下:#include<stdio.h> include<math.h> void main(){ int i;float x,sum,a,b; //sum代表和,a为分子,b为...
1. 奇函数:即sin(-x)=-sin(x),即正弦函数关于y轴对称。 2. 周期性:sin(x+2π)=sin(x),即正弦函数的周期为2π。 3. 奇异点:在x=kπ (k为整数)处,正弦函数的值为0,即sin(kπ)=0。 二、C语言中的正弦函数 在C语言中,我们可以使用数学库中的sin()函数来计算一个角度的正弦值。这个函数的原...
printf ("sqrt(%g)=%f \n", x, sqrt(x));return 0;}double SIN (double x, double eps) {double sum = 0;int sign = 1; /* 控制正负符号,初值为正 */double f = 1; /* f = (2n+1)!,初值为1 */double t = x; /* t = sign * x^(2n+1) / f,初值为x */int ...
answer = sin(0.5);printf("sin(0.5) = %f\n", answer);} 执行 sin(0.5) = 0.479426 C语言sin():sin()原型:double sin(double x)sin()角度与弧度:π=180° 1°=π/180 1(rad)=180/π 角度转弧度:用角度乘以π/180 弧度转角度:用弧度乘以180/π,或者用rtod()函数 ...
sin(2π+a)=cos(a)cos(2π+a)=-sin(a)sin(π-a)=sin(a)cos(π-a)=-cos(a)sin(π+a)=-sin(a)cos(π+a)=-cos(a)tgA=tanA=sinAcosA 2.两角和与差的三角函数 sin(a+b)=sin(a)cos(b)+cos(α)sin(b)cos(a+b)=cos(a)cos(b)-sin(a)sin(b)sin(a-b)=sin(a)cos(...