調(diào)用math.h中的三角函數(shù),需要將角度值變換為弧度值,代碼如下:
成都創(chuàng)新互聯(lián)公司主要從事做網(wǎng)站、成都做網(wǎng)站、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)自流井,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220
#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;
}
在調(diào)用三角函數(shù)之前先把角度換算成弧度,調(diào)用反三角函數(shù)之后把弧度換算成角度就可以了.可以用 pi = 4.0 * atan(1) 算出pi,用 a = h * 180.0/pi 算角度,用 h = a * pi /180 算弧度.
在C語(yǔ)言中要使用三角函數(shù)的話,首先要包含math.h頭文件。
其次,自變量的值必須要以弧度為單位,括號(hào)要使用英文標(biāo)點(diǎn)。比如,求sin(30°)的話,把度數(shù)換算為弧度,要先除以180,再乘以π。
要用以下的語(yǔ)句:
double x;
x=sin(30/180*3.1415926);
C語(yǔ)言中的三角函數(shù)計(jì)算需要將角度轉(zhuǎn)弧度,,比如以下代碼是計(jì)算sin()的值:
#include"stdio.h"
#include"math.h"
#define PI 3.1415926
main()
{
int i;
float t;
printf("請(qǐng)輸入要計(jì)算的角度:");
scanf("%d",i);
t=sin(180*i/PI);
printf("sin(%d)=%f",i,t);
}
要用三角函數(shù)請(qǐng)?jiān)诔绦蚯懊姘琺ath.h,可以寫:#includemath.h
由于cos和sin函數(shù)的參數(shù)和返回值都是double型的,請(qǐng)定義相關(guān)變量:double x,y;
由于cos和sin函數(shù)的參數(shù)都是弧度制的請(qǐng)注意將角度轉(zhuǎn)換為弧度計(jì)算:
#define PI 3.1415926
x=45.0/180*PI; y=sin(x); //計(jì)算sin 45°的值
math.h里的三角函數(shù)用的單位是弧度,你貌似錯(cuò)在這里。 答案補(bǔ)充 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 );
} 答案補(bǔ)充 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