Answers for "multiplication table script example"

C
0

multiplication table script example

#include <stdio.h>

int main()
{
    puts("\n\nMultiplication Table 1-100\n");
int x=0;
int j=0;
for(x=1;x<=100;x=x+5){
	for(j=1;j<=10;j=j+1){
		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);
	}
	puts(" ");
}

    return 0;
}
Posted by: Guest on February-26-2021

Code answers related to "multiplication table script example"

Code answers related to "C"

Browse Popular Code Answers by Language