c语言三角双边函数 三角函数C语言
如何用C语言实现三角函数的计算
math.h里的三角函数用的单位是弧度,你貌似错在这里。 答案补充 Example
公司主营业务:成都网站建设、网站制作、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联公司是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联公司推出甘泉免费做网站回馈大家。
/* SINCOS.C: This program displays the sine, hyperbolic
* sine, cosine, and hyperbolic cosine of pi / 2.
*/
#include math.h
#include stdio.h
void main( void )
{
double pi = 3.1415926535;
double x, y;
x = pi / 2;
y = sin( x );
printf( "sin( %f ) = %f\n", x, y );
y = sinh( x );
printf( "sinh( %f ) = %f\n",x, y );
y = cos( x );
printf( "cos( %f ) = %f\n", x, y );
y = cosh( x );
printf( "cosh( %f ) = %f\n",x, y );
} 答案补充 Output
sin( 1.570796 ) = 1.000000
sinh( 1.570796 ) = 2.301299
cos( 1.570796 ) = 0.000000
cosh( 1.570796 ) = 2.509178
Parameter
x
Angle in radians
用C语言实现三角函数及反三角函数怎么实现
#includestdio.h
#include math.h
void main()
{
double a,b,c,d;
scanf("%f,%f",b,d);
a=sin(b);/*这是三角函数*/
c=asin(d);/*这是反三角函数*/
printf("sin(b)=%f,asin(d)=%d",a,c);
}
其他三角函数如cos(x)什么的,可以直接用,前提有math.h的头文件
请问C语言中怎么计算三角函数?要全部的程序代码!谢谢!
库函数就有啊!
#includestdio.h
#includemath.h
void main()
{
float a,Sin,Cos,Tan,Cot;
printf("请输入你要求三角函数的变量");
scanf("%f" ,a);
Sin=sin(a); //调用库函数,谭浩强书后面有
Cos=sqrt(1-Sin*Sin);
tan=Sin/Cos;
cot=1/Tan;// 其他的反三角函数也是调用库函数的。你自己搞定吧!
printf("%f,%f,%f,%f" ,Sin,Cos,Tan,Cot);
}
C语言输入三角形的2条边和夹角输出三角形的面积,然后判断三角形的形状
#include "stdio.h"
#include "math.h"
int main(int argc,char *argv[]){
double a,b,c,C,pi=3.1415926,e=1E-6;
printf("Please enter a, b(Length), C(Angle)...\n");
scanf("%lf%lf%lf",a,b,C);
C=C/180*pi;//angle--radian
printf("The area of this triangle is %f\n",a/2*b*sin(C));
c=sqrt(a*a+b*b-2*a*b*cos(C));
if(fabs(a-b)e fabs(b-c)e)
printf("It is an equilateral triangle.\n");
else if(fabs(a-b)e || fabs(b-c)e || fabs(a-c)e)
printf("It is an isosceles triangle.\n");
else if(fabs(a*a+b*b-c*c)e || fabs(a*a+c*c-b*b)e || fabs(c*c+b*b-a*a)e)
printf("It is a right triangle.\n");
else
printf("It is a common triangle.\n");
return 0;
}
运行样例:
C语言怎样表示三角函数计算(注:要用“角度制”表示)
1.
C语言的三角函数库采用的单位都是弧度,如果要使用角度,就必须转换,从角度转换成弧度,或者是重写一个三角函数库。
2.
方法一,在调用三角函数之前先把角度换算成弧度,调用反三角函数之后把弧度换算成角度就可以了。可以用
pi
=
4.0
*
atan(1)
算出pi,用
a
=
d
/180.0*pi
转换角度到弧度。
例如:
sin(45
/180.0*pi);
就是计算的sin45。
3.
方法二,直接覆写三角函数。
例如sin函数:
double
dsin(double
d){
return
sin(45
/180.0*pi);
//原理和方法一样,调用的时候直接使用dsin(45)即可
}
c语言编写三角函数
求sin的:参考下 #includestdio.h void main() { double x,a,b,sum=0; printf("请输入x的弧度值:\n"); scanf("%lf",x); int i,j,count=0; for(i=1;;i+=2) { count++; a=b=1; for(j=1;j=i;j++) { a*=x; b*=(double)j; } if(a/b0.0000001) break; else { if(count%2==0) sum-=a/b; else sum+=a/b; } } printf("%lf\n",sum); }
本文标题:c语言三角双边函数 三角函数C语言
路径分享:http://pwwzsj.com/article/doogoec.html