博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1629 B君的圆锥
阅读量:4959 次
发布时间:2019-06-12

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

1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 #include
15 #include
16 #define x first17 #define y second18 #define pb push_back19 #define mp make_pair20 #define lson l,m,rt*221 #define rson m+1,r,rt*2+122 #define mt(A,B) memset(A,B,sizeof(A))23 #define mod 100000000724 using namespace std;25 typedef long long LL;26 const double PI = acos(-1);27 const int N=2e5+10;28 const int inf = 0x3f3f3f3f;29 const LL INF=0x3f3f3f3f3f3f3f3fLL;30 //已知圆锥的表面积S求最大的体积:V=S*sqrt(S/(72*PI))31 int main()32 {33 #ifdef Local34 freopen("data.txt","r",stdin);35 #endif36 double n;37 cin>>n;38 printf("%lf\n",n*sqrt(n/(72*PI)));39 #ifdef Local40 cerr << "time: " << (LL) clock() * 1000 / CLOCKS_PER_SEC << " ms" << endl;41 #endif42 }
View Code

 

转载于:https://www.cnblogs.com/27sx/p/6264564.html

你可能感兴趣的文章
查看端口占用cmd命令
查看>>
2019.01.17王苛震作业
查看>>
Halcon学习(八)文本操作
查看>>
MFC电子词典
查看>>
简单工厂(Simple Factory)
查看>>
04: 打开tornado源码剖析处理过程
查看>>
02: 安装epel 解决centos7无法使用yum安装nginx
查看>>
清除浮动
查看>>
PayPal(贝宝)支付接口、文档、IPN
查看>>
ORACLE 10G R2_执行计划中cost cardinality bytes cpu_cost io_cost解释
查看>>
关于this和base
查看>>
本地存储
查看>>
MP3的播放与停止
查看>>
牛客(59)按之字形顺序打印二叉树
查看>>
JavaScript 图表库 xCharts
查看>>
Android项目的目录结构
查看>>
C++中“引用”的底层实现
查看>>
vuex中的dispatch和commit
查看>>
mybatis实战教程二:多对一关联查询(一对多)
查看>>
NodeMCU文档中文翻译 3 构建固件
查看>>