计算圆面积,不知道哪里出错=-=,求助大神
#define PI 3.14
#define R 3
#include <stdio.h>
int main()
{
printf("园的面积:%d*%f\n",R*R,PI);
return 0;
}