#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define PI 3.1415927
int main()
{
    double r,v;
    while(scanf("%lf",&r)!=EOF)
    {
        v=(4*PI*r*r*r)/3;
        printf("%.3lf\n",v);
    }
    //system("pause");
    return 0;
}
posted on 2011-07-15 17:56  枫叶飘泪  阅读(382)  评论(0编辑  收藏  举报