欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;原因之前用单精度浮点数运算精度不够