|  | 
|  | 
| вернуться в форум | Whats wrong? C  #include <stdio.h>
 #include <math.h>
 main(void)
 {
 long long i;
 while(scanf("%lli", &i) != EOF)
 printf("%.4f\n", (double)sqrt(i));
 }
Re: Whats wrong? C You have print the integers in reverse order of the input sequence. | 
 | 
|