开头必须有一个数学函数库 #includemath.h
榆树网站制作公司哪家好,找成都创新互联公司!从网页设计、网站建设、微信开发、APP开发、响应式网站设计等网站项目制作,到程序开发,运营维护。成都创新互联公司于2013年开始到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联公司。
然后一般常用的
sin(x)
cos(x)
tan(x)
其中的x必须要以弧度为单位。如果以“度”为单位,比如说求30度的正弦值,要用
sin(x*180/3.1415926)的形式
arcsin(x)
arccos(x)
arctan(x)
arccot(x)
以上四个则是相应的反三角函数,函数值的单位也是弧度。若要求arctan(1)的度数,要用以下的形式: arctan(1)*180/3.1415926
扩展资料
C语言的三角函数库采用的单位都是弧度,如果要使用角度,就必须转换,从角度转换成弧度,或者是重写一个三角函数库。
在调用三角函数之前先把角度换算成弧度,调用反三角函数之后把弧度换算成角度就可以了。可以用 pi = 4.0 * atan(1) 算出pi,用 a = d /180.0*pi 转换角度到弧度。
例如: sin(45 /180.0*pi); 就是计算的sin45。
参考资料:c语言 - 百度百科
在 C 语言中,使用 math.h 框架库(或头文件)来使用三角函数的计算。该库将给出一些常见的三角函数,包括 sin()、cos()、tan()、asin()、acos()、atan() 等。
下面是使用 sin() 函数计算正弦值的代码示例:
Copy code
#include stdio.h
#include math.h
int main() {
double angleDegree = 30; // 角度为30度
double angleRad = angleDegree * M_PI / 180.0; // 将角度转换为弧度
double sinValue = sin(angleRad); // 计算正弦值
printf("正弦值为: %lf\n", sinValue);
return 0;
}
在这个程序中,通过 #include math.h 包含数学库,使用 double 类型的变量 angleDegree 存储角度,将其转换为弧度,然后使用 sin() 函数计算它的正弦值和打印输出。请注意,使用 sin() 函数时,其参数必须是弧度(而不是角度),因此在计算正弦值之前,必须将角度转换为弧度。
使用 cos() 函数和 tan() 函数计算余弦和正切值同样简单。例如:
Copy code
double cosValue = cos(angleRad); // 计算余弦值
double tanValue = tan(angleRad); // 计算正切值
请注意,在 C 语言中,三角函数的参数以弧度为单位。因此,在计算函数之前,必须将角度转换为弧度。通常使用以下公式将角度转换为弧度:
Copy code
angleRad = angleDegree * M_PI / 180.0;
以上 M_PI 常量是 π 的值,其通常在 math.h 框架库中定义。
math.h里的三角函数用的单位是弧度,你貌似错在这里。 答案补充 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 );
} 答案补充 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