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

hdu 1065 I Think I Need a Houseboat

时间:2018-07-31 21:57:05      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:targe   http   sdn   get   ++   class   aot   begin   fine   

参考:https://blog.csdn.net/neoxuhaotian/article/details/6112147

https://blog.csdn.net/lionel_d/article/details/44198125

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cmath>
 5 #define pi 3.1415926
 6 using namespace std;
 7 int main()
 8 {
 9     int t;
10     while (cin>>t)
11     {
12         for (int j=1;j<=t;j++)
13         {
14             float d,x,y;
15             cin>>x>>y;
16             d=sqrt(x*x+y*y);
17             for (int i=1;;i++)
18             {
19                 float s=i*100.0;
20                 float r=sqrt(s/pi);
21                 if (d<=r)
22                 {
23                     cout<<"Property "<<j<<": This property will begin eroding in year "<<i<<.<<endl;
24                     break;
25                 }
26             }
27         }
28         cout<<"END OF OUTPUT."<<endl;//注意此句位置,不要误放入j循环内!
29     }
30 
31     return 0;
32 }

 

hdu 1065 I Think I Need a Houseboat

标签:targe   http   sdn   get   ++   class   aot   begin   fine   

原文地址:https://www.cnblogs.com/hemeiwolong/p/9397847.html

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