首页 > 其他 > 详细

代码1005

时间:2016-11-20 14:01:06      阅读:215      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <vector>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <cmath>
#include <algorithm>
#include <string>
using namespace std;
const double pi=3.141592653;
int main()
{
int num;
double x,y;
cin>>num;
for(int i=0;i<num;i++)
{
	cin>>x>>y;
    double result=floor((x*x+y*y)*pi/2/50)+1;
    cout<<"Property "<<i<<": This property will begin eroding in year "<<result<<"." <<endl;
}
cout<<"END OF OUTPUT."<<endl;
return 0;
}

  

代码1005

原文:http://www.cnblogs.com/xlqtlhx/p/6082399.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!