Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | None | 0 0
  1. ///////////////////////////////////////////////////////////////////////////////
  2. //  PROGRAM 5
  3. ///////////////////////////////////////////////////////////////////////////////
  4. /*#include <stdio.h>
  5. #include <math.h>
  6. int main()
  7. {
  8.     printf("Oto pierwiastki kwadratowe wybranych liczb:\n");
  9.     printf("\n%2s%14s","k","sqrt(k)\n");
  10.     printf("\n%2d%26.18f",21,sqrt(21.0));
  11.     printf("\n%2d%26.18f",32,sqrt(32.0));
  12.     printf("\n%2d%26.18f",53,sqrt(53.0));
  13.     printf("\n\nKoniec programu.\n");
  14.     return 0;
  15. }*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement