help me. wrong answer in test 1 (C)
Послано
Evgeny 29 дек 2013 06:03
#include <stdio.h>
#include <math.h>
int foo () {
long long int a;
while(scanf ("%lld",&a)!=EOF)
{ foo ();
printf ("%.4f\n",sqrt ((double)a));
return 0; }
}
int main () {
foo ();
return 0;
}