水题
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std; const double PI=3.1415926; int main()
{
double L;
while(~scanf("%lf",&L)){
if(!L) break;
printf("%.2lf\n",(L*L)/(*PI));
}
return ;
}
水题
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std; const double PI=3.1415926; int main()
{
double L;
while(~scanf("%lf",&L)){
if(!L) break;
printf("%.2lf\n",(L*L)/(*PI));
}
return ;
}