Advertisement
Saleh127

root

Mar 4th, 2020
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. double b[200000];
  4. int main()
  5. {
  6. int i=0;
  7. unsigned long long a,c,d,e,f;
  8. while (scanf("%llu",&a) != EOF)
  9. {
  10. b[i++] =(double)sqrt(a*1.0);
  11. }
  12. while(i--)
  13. {
  14. printf("%.4lf\n", b[i]);
  15. }
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement