Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int N,i;
  5. scanf("%d",&N);
  6. if(N>1 && N<1000)
  7. {
  8. for(i=1;i<=10;i++)
  9. {
  10.  
  11. printf("%d × %d = %d\n",i,N,i*N);
  12. }
  13. }
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement