Hello World
Tuesday, 8 May 2012
UVa 10297 Beavergnaw Solution
#include<stdio.h>
#include<math.h>
int main()
{
double d,v,ans;
while(scanf("%lf%lf",&d,&v)==2)
{
if(d==0 && v==0)
break;
ans=pow((pow(d,3)-6*v/3.1415926535897932384626433832795),.33333333333);
printf("%.3lf\n",ans);
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment