Advertisement
mustahidhasan

tables

Feb 20th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.  
  6.  
  7.  
  8.     int i, n;
  9.     scanf("%d", &n);
  10.  
  11.     for(i = 1; i <= 10; i++)
  12.     {
  13.         printf("%d X %d = %d\n", n, i, n * i);
  14.     }
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement