以下のコードをコンパイルすると、次のエラーメッセージが表示されます。
(Error 1 error C2065: 'M_PI' : undeclared identifier
2 IntelliSense: identifier "M_PI" is undefined)
これは何ですか?
#include <iostream>
#include <math.h>
using namespace std;
double my_sqrt1( double n );`enter code here`
int main() {
double k[5] = {-100, -10, -1, 10, 100};
int i;
for ( i = 0; i < 5; i++ ) {
double val = M_PI * pow( 10.0, k[i] );
cout << "n: "
<< val
<< "\tmysqrt: "
<< my_sqrt1(val)
<< "\tsqrt: "
<< sqrt(val)
<< endl;
}
return 0;
}
double my_sqrt1( double n ) {
int i;
double x = 1;
for ( i = 0; i < 10; i++ ) {
x = ( x + n / x ) / 2;
}
return x;
}
their docs によれば、MSのものを使用しているようです
数学定数は、標準C/C++では定義されていません。これらを使用するには、最初に_USE_MATH_DEFINESを定義してから、cmathまたはmath.hを含める必要があります。
のようなものが必要です
#define _USE_MATH_DEFINES
#include <cmath>
ヘッダーとして。
math.h
は定義しないM_PI
デフォルトでは。だからこれで行く:
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
これにより、ヘッダーにM_PI
定義済みかどうか。
M_PI
はGCCでもサポートされていますが、それを取得するには作業が必要です
#undef __STRICT_ANSI__
#include <cmath>
または、ソースファイルを汚染したくない場合は、
g++ -U__STRICT_ANSI__ <other options>