所以这段代码应该计算 a 和 b 方面的大小和三角形的高度,我太笨了,无法意识到什么是错的,有人可以帮我找到错误的?感谢帮助。
#include <stdio.h>
#include <math.h>
float distance(float, float, float, float);
int main()
{
float a, b, c, d;
float aX, aY, alfa;
float bX, bY, beta;
scanf("%f %f %f" , &aX, &aY, &alfa);
scanf("%f %f %f", &bX, &bY, &beta);
distance(aX, aY, bX, bY);
float gamma = 180 - alfa - beta;
c = distance(aX, aY, bX, bY);
b = ((c/sin(gamma)) * sin(beta));
a = ((c/sin(gamma)) * sin(alfa));
d = (sin(alfa))*c;
printf("Side a:%.2f\n Side b:%.2f\n Side c:%.2f Height:%.2f\n", a, b, c, d);
return 0;
}
float distance(float x1, float y1, float x2, float y2)
{
float dx = x2 - x1;
float dy = y2 - y1;
return sqrt(dx*dx + dy*dy);
}
答案 0 :(得分:0)
问题是您使用度数而不是弧度。三角函数必须应用于以弧度为单位的值。
答案 1 :(得分:0)
谢谢。我只是一名学生,所以我不知道这些功能是如何运作的。但我可以在我找到它的网站上看到它......我太笨了......