write a program to print the table of 12 (upto 5 times only )
Answers
Answered by
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
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
Math,
30 days ago
English,
30 days ago
Math,
30 days ago
English,
2 months ago
Physics,
2 months ago
Physics,
8 months ago
Social Sciences,
8 months ago
Social Sciences,
8 months ago