A-3

 

#include <iostream>

#include <cstdio>

using namespace std;

#define PI 3.1415927

int main()

{

    double a;

    while(scanf("%lf",&a)!=EOF)

    {

        double s=4*PI*a*a*a/3;

        printf("%.3lf\n",s);

    }

    return 0;

}

 

posted @ 2020-12-22 23:55  py佐料  阅读(146)  评论(0编辑  收藏  举报