POJ 1005 I Think I Need a Houseboat

题目:http://poj.org/problem?id=1005

水题

#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <string>
#include <string.h>
#include <cstdlib>
#include <cmath>

using namespace std;


const double PI=3.1415926;

int main()
{
    int n;
    cin>>n;
    for(int i=1;i<=n;i++)
    {
        double x,y;
        cin>>x>>y;
        cout<<"Property "<<i<<": This property will begin eroding in year "<<ceil(PI*(x*x+y*y)/100.0)<<"."<<endl;
    }
    cout<<"END OF OUTPUT."<<endl;
    return 0;
}

 

posted @ 2013-01-31 00:12  Daniel Qiu  阅读(102)  评论(0编辑  收藏  举报