HDU 2002 计算球体积

1 #include<stdio.h>
2 #define PI 3.1415927
3 int main()
4 {
5     double r;
6     while(scanf("%lf",&r)!=EOF)
7     printf("%.3lf\n",r/3*4*r*r*PI);
8     return 0;
9 }

posted on 2012-08-03 17:47  mycapple  阅读(1012)  评论(0编辑  收藏  举报

导航