利用for循环打出乘法口诀表
#include<stdio.h>main(){int i,j,k;for(i=1;i<10;i++){for(j=1;j<i+1;j++){printf("%d*%d=%d\t",i,j,k=i*j); }printf("\n");} }
```