Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 223955 Accepted Submission(s): 87495
1 #include<stdio.h> 2 #define PI 3.1415927 3 int main() 4 { 5 double r; 6 while(~scanf("%lf",&r)) 7 { 8 printf("%.3lf\n",PI*r*r*r*4/3); 9 } 10 return 0; 11 }
原文:https://www.cnblogs.com/lightice/p/10261046.html