Computer Science, asked by umashukla5367, 2 months ago

write a program to print the table of 12 (upto 5 times only )​

Answers

Answered by shrabonibiswas1978
1

Answer:

Explanation:

#include<stdio.h>  

void main()  

{  

int j,i;  

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

{  

 printf("\n\nTable of %d:\n",i);  

 for(j=1;j<11;j++)  

 {  

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

 }  

   

}  

}

Answered by 177cvarnikashetty
3

Answer:

1 TextWindow.WriteLine( "Table of 12")

2 Number =12

3. For A = 1 to 5

4 TextWindow.WriteLine ("12 *" + A + "=" +12 * A)

5 EndFor

Similar questions