天天看点

51nod oj 1629 B君的圆锥【数学几何】

题目链接:​​传送--1629​​

好吧-.-我太无聊了---

附推导过程-.-真的是做了一道数学题

51nod oj 1629 B君的圆锥【数学几何】
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm> 
using namespace std;
#define PI (2*acos(0.0))
int main()
{
  double s,v;
  scanf("%lf",&s);
  v=sqrt(s/8/PI)*s/3;
  printf("%lf\n",v);
  return 0;
}