严格来说,到最后我还是没找到为什么我本机的CB运行出来就是0,上传就能AC的原因。

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <math.h>

#define PI 3.1415927

int main(){
//freopen("in.txt","r",stdin);
double r;
while(scanf("%lf",&r)!=EOF){
printf("%.3lf\n",4.0/3.0*PI*r*r*r);
}
return 0;
}