// HDOJ 2002 计算球体积 // @author: bos // @date: 2012.2.14 #define PI 3.1415927 #include <stdio.h> int main() { double r; while(scanf("%lf", &r)!= EOF) { printf("%.3lf\n", (double)(4*PI*r*r*r/3));//晕,球体积公式都忘了。。。还上网查了下 } return 0; }
// HDOJ 2002 计算球体积 // @author: bos // @date: 2012.2.14 #define PI 3.1415927 #include <stdio.h> int main() { double r; while(scanf("%lf", &r)!= EOF) { printf("%.3lf\n", (double)(4*PI*r*r*r/3));//晕,球体积公式都忘了。。。还上网查了下 } return 0; }