1、包含头文件 你需要包含math.h头文件,这个头文件中包含了所有数学函数的定义。 #include <math.h> 2、使用反三角函数 math.h提供了三种反三角函数: asin(x):返回x的反正弦值,其中x的范围是[1,1]。 acos(x):返回x的反余弦值,其中x的范围是[1,1]。 atan(x):返回x的反正切值,其中x的范围是所有实数。
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的头文件 ...
用自带的函数库 include <stdio.h>#include <math.h>#define M_PI 3.14159265358979323846int main(void){ printf("%.4f\n", sin(M_PI / 2)); printf("%.4f\n", cos(M_PI / 3)); printf("%.4f\n", asin(1.00)); printf("%.4f\n", acos(0.50)); 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语言怎样表示三角函数计算(注:要用“角度制”表示)编出代码? 调用数学中的三角函数。H、需要将角度值...