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

poj1005

时间:2017-05-07 20:03:03      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:mat   int   pac   efi   rod   小数   ace   odi   多少   

  

/* X轴上方为陆地下方为水
水每年让陆地收缩50平方英里
输入第一行为数据组数
其余为X,Y坐标
判断水多少年能冲击到座标上*/

#include<iostream>
#include<math.h>
using namespace std;
#define PL 3.1415926
int main()
{
double x, y, r, d;
int n,z;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>x;
cin>>y;
d=sqrt(x*x+y*y);
z=PL*d*d*0.01+1;//赋值的时候只把整数放进去小数没存进去   
cout<<"Property "<<i<<": This property will begin eroding in year " <<z<<"."<<endl;
}

cout<<"END OF OUTPUT."<<endl;
return 0;
}

poj1005

标签:mat   int   pac   efi   rod   小数   ace   odi   多少   

原文地址:http://www.cnblogs.com/mykonons/p/6821801.html

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