Ad Code

Responsive Advertisement

1078 - Multiplication Table

Author: Ismail Hosen

Daffodil International University





Problem Link

//Please follow from main function



#include<stdio.h>


int main()


{


    int i, j;


    scanf("%d", &j);


    for(i=1; i<=10; i++)


    {


        printf("%d x %d = %d\n", i, j, i*j);


    }


    return 0;





}





Post a Comment

0 Comments