输出乘法口诀表

<pre name="code" class="html"><pre name="code" class="cpp">/*
*********************************************
 输出乘法口诀表
*********************************************
*/
#include<stdio.h>

int main()
{

	int i;
	int j;

	for(i=1;i<=9;i++)
	{
		for(j=1;j<=i;j++)
		{
			printf("%d*%d=%d\t",i,j,i*j);	
		}
		printf("\n");      //pay attention to this line 
	}
	return 0;
}


 
 
 

你可能感兴趣的:(输出乘法口诀表)