乘法口诀

Posted on 2006-07-31 13:18  abcdeft  阅读(212)  评论(0)    收藏  举报
#include<stdio.h>
#include<conio.h>
void main()
{
  int i,j;
  for(i=1;i<=9;i++)
  {
   for(j=1;j<=i;j++)
    printf("%d*%d=%-3d",j,i,j*i);
    printf("\n");
   }
   printf("\n");
   getch();
}