#include <stdio.h>
#include <math.h>
double a[200000];
int main()
{
int tot=0;
int i;
while(scanf("%lf",&a[tot++])!=EOF);
tot--;
while(tot--)
{
printf("%.4lf\n",sqrt(a[tot]));
}
return 0;
}
URAL1001 - Reverse Root - 水题
最新推荐文章于 2015-06-08 16:22:28 发布