HDU2002 计算球体积\\c
程序员文章站
2022-05-21 08:16:30
...
原题地址:http://acm.hdu.edu.cn/showproblem.php?pid=2002
精度题
ac代码:
#include"stdio.h"
#define PI 3.1415927
int main()
{ double a,b;
while(~scanf("%lf",&a))
{
b=a*a*a*(4.0/3.0)*PI;
printf("%.3lf\n",b);
}
return 0;
}
错误:wa;原因之前用单精度浮点数运算精度不够