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 ",s);

    }

    return 0;

}

 

这篇文章,是又一个故事的结束...
lazy's story is continuing.
原文地址:https://www.cnblogs.com/Hello-world-hello-lazy/p/14176263.html