multiplication table script example

Solutions on MaxInterview for multiplication table script example by the best coders in the world

showing results for - "multiplication table script example"
Alienor
06 Feb 2017
1#include <stdio.h>
2
3int main()
4{
5    puts("\n\nMultiplication Table 1-100\n");
6int x=0;
7int j=0;
8for(x=1;x<=100;x=x+5){
9	for(j=1;j<=10;j=j+1){
10		printf("%dx%d=%d\t%dx%d=%d\t%dx%d=%d\t%dx%d=%d\t%dx%d=%d",x,j,x*j,x+1,j,(x+1)*j,x+2,j,(x+2)*j,x+3,j,(x+3)*j,x+4,j,(x+4)*j);
11	}
12	puts(" ");
13}
14
15    return 0;
16}