本文主要是介绍hdu-2134-Cuts the cake,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include<stdio.h>#include<math.h>
#define m 3.14
int main()
{
int n;
double x,y=0;
while(scanf("%d",&n)&&n!=0)
{
x=sqrt(m*n*n/(3*m));
y=sqrt(2*m*x*x/m);
printf("%.3lf %.3lf\n",x,y);
}
return 0;
}
这篇关于hdu-2134-Cuts the cake的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!