HDU1065(数学水题)

题意:
河水以每年50平方英里的速度侵蚀,告诉你你的位置坐标,问你多少年会被侵蚀到.
不想说话,都快WA哭了,PI的值必须是3.1415926
还有一定要注意格式
重要的话说三遍
一定要注意格式
一定要注意格式
一定要注意格式
求出以你到圆心为半径的半个圆面积,然后算算多少年侵蚀到你就OK了

code:

#include
#include
//const double PI=acos(-1);
const double PI=3.1415926;
int main()
{
    int n;
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
    {
        double x,y;
        scanf("%lf%lf",&x,&y);
        double dis=x*x+y*y;
        //  printf("dis=%f\n",dis);
        int year=(int)(dis*PI/100.00)+1;
        printf("Property %d: This property will begin eroding in year %d.\n",i,year);
    }
    printf("END OF OUTPUT.\n");
    return 0;
}

你可能感兴趣的:(HDU)