hdoj 1065 I Think I Need a Houseboat (간단 한 문제)

근원http://acm.hdu.edu.cn/showproblem.php?pid=1065
다섯 번 이나 제출 하고 나 서 야...
마지막 해법 은 첫 번 째 해법 과 완전히 같 아서 결국 ac 가 되 었 다.
#include
#include 
using namespace std;
#define pi 3.1415926 
int main()
{
	double x,y,d,r;
	int t,i,t1=1;
	scanf("%d",&t);
	while(t--)
	{
		scanf("%lf%lf",&x,&y);
	    d=(x*x+y*y)*pi/2;
	    i=int(d/50)+1;			
		printf("Property %d: This property will begin eroding in year %d.
",t1++,i); } printf("END OF OUTPUT.
"); return 0; }

좋은 웹페이지 즐겨찾기