我正在尝试使用余弦和正弦,但是它们没有返回我期望的值。
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main() {
float magnitudeForce;
int force;
float theta;
float angle;
double x;
double y;
int i = 0;
while(i < 3){
printf("Please enter the value of the force"
" and the angle from the x-axis of the force:\n");
scanf("%d %f", &force, &angle);
printf("The force and the angle are: %d %.2lf.\n", force, angle);
x = force * cos(angle);
printf("%lf\n", x);
++i;
}
return 0;
}
因此,如果力为8且角度为60,则返回值应为4,但它返回-7.62。
答案 0 :(得分:6)
C cos
函数要求其参数为 radians 而不是度。
虽然60度的余弦是0.5
,但60 弧度的余弦约为-0.95
,这就是为什么你会看到-7.62
当你乘以8时。
您可以通过执行以下操作来解决此问题:
x = force * cos(angle * M_PI / 180.0);
请记住,M_PI
是 POSIX 的东西,而不是ISO的东西,因此它可能不一定在您的C实现中。如果不是,您可以使用以下内容自行定义:
const double M_PI = 3.14159265358979323846264338327950288;