Guest User

Untitled

a guest
Jan 15th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. #include<stdio.h>
  2. int main ()
  3. {
  4.  int a=10;
  5.  int b=10;
  6.  int i=0;
  7.  int n=0;
  8.  printf("unesite broj");
  9.  scanf("%4d",&n);
  10.  int c;
  11.  printf("  X |");
  12.  
  13. for(n=1; n<=10;n++)
  14. {
  15.  printf("%4d",n);
  16. }
  17.  
  18. printf("\n");
  19.  
  20. for(n=1; n<=10;n++)
  21. {
  22.  printf("%3d |",n);
  23.      for(i=1; i<=10;i++)
  24.     {
  25.      printf("%4d",i * n);
  26.     }
  27.     printf("\n");
  28. }
  29. printf("\n");
  30.  
  31. return 0;
  32. }
Add Comment
Please, Sign In to add comment