博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu1065
阅读量:6198 次
发布时间:2019-06-21

本文共 501 字,大约阅读时间需要 1 分钟。

  hot3.png

错了n次了,让所有的水题汗颜啊!

15103750_IyHQ.gif
15103750_yL8f.gif View Code
 
#include " iostream "
using namespace std;
#define pi 3.1415926 // 3.1415927(wrong)
int main()
{
int n;
double a,b,sum;
cin
>> n;
int i = 0 ;
while (n -- )
{
cin
>> a >> b;
sum
= pi * (a * a + b * b) / 2 ;
int x = ( int )(sum / 50 ) + 1 ; // (int)sum/50+1(wrong)
cout << " Property " <<++ i << " : " << " This property will begin eroding in year " ;
cout
<< x << " . " << endl;
}
cout
<< " END OF OUTPUT. " << endl;
return 0 ;
}

转载于:https://my.oschina.net/garyun/blog/602882

你可能感兴趣的文章
【Todo】phantomjs获取动态网页
查看>>
docker for caffe
查看>>
0.0.0.0 与 127.0.0.1的区别
查看>>
尚学python课程---14、python中级语法
查看>>
Django是什么
查看>>
(转)背包9讲
查看>>
ABP相关网站
查看>>
PHP网站注册登录功能的原理是什么?
查看>>
CentOS7 firewalld打开关闭防火墙 开放端口
查看>>
python学习-函数模拟SQL
查看>>
bootstrap 2 基本css之栅格系统
查看>>
类型、值和变量
查看>>
VS2012并发可视化工具启动异常(当前正在进行ETW收集)
查看>>
Codeforces 776B & 776C 程序(夏洛克专场)
查看>>
vnc普通用户不能登录的解决方法
查看>>
隐藏Apache 及操作系统信息
查看>>
WinForm 更换主窗体的例子
查看>>
Angular.js为什么如此火呢?
查看>>
微软银光 silverlight简介
查看>>
SQL server 统计数据库表数量和列出所有表名称
查看>>