杭电ACM 2002 计算球体积-C语言
程序员文章站
2022-05-21 08:13:30
...
http://acm.hdu.edu.cn/showproblem.php?pid=2002
#include <stdio.h>
#define PI 3.1415927
int main()
{
double r,temp;
while(scanf("%lf",&r)!=EOF){
temp=4.0/3*PI*r*r*r;
printf("%.3lf\n",temp);
}
return 0;
}
注意精度问题
球体积V=π