我正在編寫此代碼,並在嘗試編譯時出現警告。宏重新定義警告
#include <stdio.h>
#include <math.h>
#define EPS 1.5e-6
#define M_PI 3.14159265358979
int main()
{
double x1,x2,xm,y1,y2,ym;
int m;
for(m=0;m<11;m++){
x1=1.450;
x2=1.489;
y1=atan(pow(x1*x1-1.5*1.5,0.5)/pow(1.489*1.489-x1*x1,0.5))\
+ atan(pow(x1*x1-1.450*1.450,0.5)/pow(1.489*1.489-x1*x1,0.5))\
- 4.5 * EPS * ((2 * M_PI)/(1.5 * EPS)) * pow(1.489*1.489-x1*x1,0.5)\
+ m*M_PI*1.5;
y2=atan(pow(x2*x2-1.5*1.5,0.5)/pow(1.489*1.489-x2*x2,0.5))\
+ atan(pow(x2*x2-1.450*1.450,0.5)/pow(1.489*1.489-x2*x2,0.5))\
- 4.5 * EPS * ((2 * M_PI)/(1.5 * EPS)) * pow(1.489*1.489-x2*x2,0.5)\
+ m*M_PI*1.5;
if(y1*y2>0){
printf("change initial values\n");
}
else{
while(fabs(x1-x2)>EPS){
xm=(x1+x2)/2;
ym=atan(pow(xm*xm-1.5*1.5,0.5)/pow(1.489*1.489-xm*xm,0.5))\
+ atan(pow(xm*xm-1.450*1.450,0.5)/pow(1.489*1.489-xm*xm,0.5))\
- 4.5 * EPS * ((2 * M_PI)/(1.5 * EPS)) * pow(1.489*1.489-xm*xm,0.5)\
+ m*M_PI*1.5;
if(y1*ym>0){
x1=xm;
}
else{
x2=xm;
}
}
printf("n[%d] = %.9f;\n",m, xm);
}
}
return 0; }
的警告是:
警告: 'M_PI' 宏重新定義[-Wmacro重新定義]
我無法弄清楚如何使報警消失
意味着我要改變變量的名字嗎?對不起,我對編程很陌生 –
也許關於方程式的一些評論會幫助維護這些代碼的人 - 並且讓我們理解它 –