cos结果不正确
我导入“math.h”。
我可以使用 cos 函数, 但是当我执行 cos(0.321139585333178)
结果是 0.948876
如果我在 Mac 中使用计算器或使用普通计算器,结果是 0.999984292347418
谁能帮我解决这个问题吗?
I import "math.h".
I can use the cos function,
but when I execute cos(0.321139585333178)
the result is 0.948876
If I use the calculator in Mac or use a normal calculator, the result is 0.999984292347418
Can anyone help me to solve that problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将度数与弧度混淆了。
cos(0.321139585333178 度) = 0.999984292
cos(0.321139585333178 弧度) = 0.948876326
You're confusing degrees with radians.
cos(0.321139585333178 degrees) = 0.999984292
cos(0.321139585333178 radians) = 0.948876326