用c语言算三角函数 c语言求三角函数的程序

C语言怎样表示三角函数计算(注:要用“角度制”表示)编出代码调用math.h中的三角函数,需要将角度值变换为弧度值,代码如下:
#includestdio.h
#includemath.h
#define PI 3.14159265359
int main()
{
float st,a;
scanf("%f",st);
a = st * PI/180;
printf("sin(st)=%f\n", sin(a));
printf("cos(st)=%f\n", cos(a));
return 0;
}
求三角函数的C语言算法!从键盘输入一个角度值,求出该角度的正弦值、余弦值和正切值 。
#includeiostream
#includecmath
using namespace std;
const double pi(3.14159265);
void main()
{double a,b;
【用c语言算三角函数 c语言求三角函数的程序】cina;
b=a*pi/180;
cout"sin("a")="sin(b)endl;
cout"cos("a")="cos(b)endl;
cout"tan("a")="tan(b)endl;
}
求阶乘
#includeiostream.h
intFactorial ( int ) ;
voidmain ()
{ intk ;
cout"Compute Factorial(k) ,Please input k: " ;
cink ;
coutk"! = "Factorial(k)endl ;
}
intFactorial ( intn )
{ if ( n == 0 )
return1 ;
else
returnn * Factorial ( n - 1 ) ;
}
x的n次方的函数
#include iostream
using namespace std;
double power (double x, int n);
void main(void)
{
cout"5 to the power 2 is "power(5,2)endl;
}
double power (double x, int n)
{
double val = 1.0;
while (n--)
val = val*x;
return(val);
}
c语言编写三角函数求sin的:参考下 #includestdio.hvoid 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语言中计算三角函数#include stdio.h
#include math.h
#define PI 3.14159265
int main()
{
double ans = sqrt((1-cos(PI/3.0))/2.0);
printf ("%g\n", ans);
return 0;
}
如何用C语言进行三角函数的计算 , 比如知道sinx=0.5,求cos和tanx 。怎么写在C的math.h是有专门的三角函数和反三角函数的 。
所以
你这个
x=asin(0.5)
输出
cos(x)

tan(x)就可以了 。
关于用c语言算三角函数和c语言求三角函数的程序的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读