#include<stdio.h>
#include<conio.h>
int i,j;
void main()
{
for(i=1;i<=10;i++)
{
for(j=1;j<=10;j++)
{
printf("%d*%d = %d\n",i,j,i*j);
}
printf("\n");
}
getch();
No comments:
Post a Comment