Advertisement
mdnurnobihosen

Assignment 7

Feb 24th, 2019
85
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. int main()
  3. {
  4.     int i,n;
  5.     printf("Input:");
  6.     scanf("%d",&n);
  7.     printf("Output:\n");
  8.     for(i=1; i<=10; i++)
  9.  
  10.  
  11.         printf("%d X %d = %d\n",n,i,n*i);
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement