調(diào)用math.h中的三角函數(shù),需要將角度值變換為弧度值,代碼如下:
目前創(chuàng)新互聯(lián)建站已為成百上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、象山網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。
#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;
}
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
在 C 語言中,使用 math.h 框架庫(或頭文件)來使用三角函數(shù)的計(jì)算。該庫將給出一些常見的三角函數(shù),包括 sin()、cos()、tan()、asin()、acos()、atan() 等。
下面是使用 sin() 函數(shù)計(jì)算正弦值的代碼示例:
?Copy code
#include stdio.h
#include math.h
int main() {
double angleDegree = 30; // 角度為30度
double angleRad = angleDegree * M_PI / 180.0; // 將角度轉(zhuǎn)換為弧度
double sinValue = sin(angleRad); // 計(jì)算正弦值
printf("正弦值為: %lf\n", sinValue);
return 0;
}
在這個(gè)程序中,通過 #include math.h 包含數(shù)學(xué)庫,使用 double 類型的變量 angleDegree 存儲(chǔ)角度,將其轉(zhuǎn)換為弧度,然后使用 sin() 函數(shù)計(jì)算它的正弦值和打印輸出。請(qǐng)注意,使用 sin() 函數(shù)時(shí),其參數(shù)必須是弧度(而不是角度),因此在計(jì)算正弦值之前,必須將角度轉(zhuǎn)換為弧度。
使用 cos() 函數(shù)和 tan() 函數(shù)計(jì)算余弦和正切值同樣簡(jiǎn)單。例如:
?Copy code
double cosValue = cos(angleRad); // 計(jì)算余弦值
double tanValue = tan(angleRad); // 計(jì)算正切值
請(qǐng)注意,在 C 語言中,三角函數(shù)的參數(shù)以弧度為單位。因此,在計(jì)算函數(shù)之前,必須將角度轉(zhuǎn)換為弧度。通常使用以下公式將角度轉(zhuǎn)換為弧度:
?Copy code
angleRad = angleDegree * M_PI / 180.0;
以上 M_PI 常量是 π 的值,其通常在 math.h 框架庫中定義。
求sin的:參考下 #includestdio.h void main() { double x,a,b,sum=0; printf("請(qǐng)輸入x的弧度值:\n"); scanf("%lf",x); int i,j,count=0; for(i=1i+=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); }