南阳242

1 #include<stdio.h>
2 #define PI 3.1415926
3 int main()
4 {
5     double r;
6     while(~scanf("%lf",&r))
7         printf("%.0lf
",PI*4/3*r*r*r);
8 }
原文地址:https://www.cnblogs.com/qq188380780/p/6360037.html