int temp, i, j;
for (i = 1; i < 10; i++)
{
for (j = 1; j <= i; j++)
{
temp = j * i;
if (temp < 10)
{
printf("%d*%d= %d ", j, i, temp);
}
else
{
printf("%d*%d=%d ", j, i, temp);
}
}
printf("\n");
}
return 0;
int temp, i, j;
for (i = 1; i < 10; i++)
{
for (j = 1; j <= i; j++)
{
temp = j * i;
if (temp < 10)
{
printf("%d*%d= %d ", j, i, temp);
}
else
{
printf("%d*%d=%d ", j, i, temp);
}
}
printf("\n");
}
return 0;