Md_hosen_zisad

multipy

Aug 23rd, 2017
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int i=1,n,z;
  5.     scanf("%d %d",&n,&z);
  6.     while(i<=n)
  7.        {
  8.            printf("%d*%d=%d \n",z,i,z*i);
  9.         i++;}
  10.     return 0;
  11. }
Add Comment
Please, Sign In to add comment