标签: c++builder
我正在使用Borland C ++ Builder 3。
我在代码中加入了math.h。
math.h
使用此代码时:
float b; b=pi();
我收到以下编译错误:
调用未定义的函数pi()
答案 0 :(得分:1)
使用M_PI常量,而不是pi()函数。
M_PI
pi()