#include<stdio.h>
#define PI 3.1415927
int main(){
float r,v;
scanf("%f",&r);
v=((PI*r*r*r)*4)/3;
printf("%.3f",v);
return 0;
}
2002.计算球体积
原文:https://www.cnblogs.com/huoyuying/p/9727213.html