#include<math.h>
int main()
{
double c;
c=4*atan(1.0/5)-atan(1.0/239);
printf("%f\n",c);
return 0;
}
缺少#include<stdio.h>