You are on page 1of 1

#include <iostream.

h>
#include <conio.h>

main()
{
int i,j;
for(i=1;i<=10;i++)
{
for(j=1;j<=10;j++)
{
cout <<i*j<< "\t";
}
cout <<endl;
}
getch();
}

You might also like