如何在 Visual C++ 中访问数学常量(例如 M_PI) 2008年?
我想在 Visual C++ 2008 中使用数学常量,例如 M_PI 和 M_E。我假设它们是在 cmath 标头中定义的。
I want to use the math constants, such as M_PI and M_E, in Visual C++ 2008. I assumed they were defined in the cmath header.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们是,但您还需要
#define _USE_MATH_DEFINES
在#include
之前They are, but you also need to
#define _USE_MATH_DEFINES
before you#include <cmath>