#includestdio.h
創(chuàng)新互聯(lián)公司專注于富民企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城系統(tǒng)網(wǎng)站開發(fā)。富民網(wǎng)站建設(shè)公司,為富民等地區(qū)提供建站服務(wù)。全流程按需求定制網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
#include math.h
void main()
{
double a,b,c,d;
scanf("%f,%f",b,d);
a=sin(b);/*這是三角函數(shù)*/
c=asin(d);/*這是反三角函數(shù)*/
printf("sin(b)=%f,asin(d)=%d",a,c);
}
其他三角函數(shù)如cos(x)什么的,可以直接用,前提有math.h的頭文件
double asin(double x)
double acosdouble x)
-1=x=1
double atan(double x)
反3角函數(shù)有 acos(double),asin(double),atan(double),atan(double,double),返回值 double 型,弧度值。轉(zhuǎn)角度要 *180.0/3.1416。
例如:
1、#include stdio.h
2、#includestdlib.h
3、#includemath.h
4、int main()
5、{double x=0.5;
printf("acos=%.2lf degrees\n",acos(x) * 180.0/3.1416);
printf("asin=%.2lf degrees\n",asin(x) * 180.0/3.1416);
printf("atan=%.2lf degrees\n",atan(x) * 180.0/3.1416);
printf("atan2=%.2lf degrees\n",atan2(1.0,2.0) * 180.0/3.1416);
return 0;}
1、反三角函數(shù)是一種基本初等函數(shù)。
2、它是反正弦arcsin x,反余弦arccos x,反正切arctan x,反余切arccot x,反正割arcsec x,反余割arccsc x這些函數(shù)的統(tǒng)稱,各自表示其反正弦、反余弦、反正切、反余切 ,反正割,反余割為x的角。
3、它并不能狹義的理解為三角函數(shù)的反函數(shù),是個多值函數(shù)。
4、三角函數(shù)的反函數(shù)不是單值函數(shù),因為它并不滿足一個自變量對應(yīng)一個函數(shù)值的要求,其圖像與其原函數(shù)關(guān)于函數(shù) y=x 對稱。歐拉提出反三角函數(shù)的概念,并且首先使用了“arc+函數(shù)名”的形式表示反三角函數(shù)。