|
|
вернуться в форум#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; } )) decided it's need to use double in scanf
|
|
|