为什么求出的PI是3.000000
用蒙特卡洛方法求圆周率PI。但结果总是3.000000.是哪个变量没定义好吗
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include <stdio.h>
main ()
{
int x,y,i,m=0;
long n=100;
double d,r=32767;
float pi;
srand (time(0)); for(i=0;i<n;i++)
{x=rand();
y=rand();
printf("x=%d,y=%d\n",rand(),rand());
d=sqrt(x*x+y*y);
printf("d=%f\n",d);
if (d<r)
{m=m+1;
printf("m=%d\n",m);
}
pi=4*m/n;
printf("pi=%f\n",pi);
}
}