标签:
#include<stdio.h>#include<math.h>#define PI 3.1415927int main(){ double v,r; while(scanf("%lf",&r)!=EOF) { v=r*r*r*PI*4/3; printf("%.3lf\n",v); } }
杭电2002(我们没有什么不同)
原文地址:http://www.cnblogs.com/woderenshengluwozijizou/p/4442660.html