#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;
}

相关文章:

  • 2021-07-23
  • 2021-10-24
  • 2021-04-11
  • 2021-04-06
  • 2021-04-17
  • 2021-11-16
  • 2021-08-08
  • 2022-02-22
猜你喜欢
  • 2022-01-28
  • 2021-08-04
  • 2021-08-16
  • 2021-04-16
  • 2021-04-26
  • 2021-06-26
  • 2021-06-01
相关资源
相似解决方案