码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1065 - I Think I Need a Houseboat

时间:2016-05-11 01:04:42      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

又是恶心人的水题

圆周率取3.1415926就啥事没有..

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cmath>
 4 using namespace std;
 5 double a,b;
 6 int n;
 7 int main()
 8 {    
 9     scanf("%d",&n);
10     for(int k=1;k<=n;k++)
11     {
12         for(int i=1;i<=n;i++)
13         {
14             scanf("%lf%lf",&a,&b);
15             int ans=(a*a+b*b)*(3.1415926)/100;            
16             printf("Property %d: This property will begin eroding in year %d.\n",k++,ans+1);
17         }
18         puts("END OF OUTPUT.");
19     }
20 } 

 

HDU 1065 - I Think I Need a Houseboat

标签:

原文地址:http://www.cnblogs.com/nicetomeetu/p/5479843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!