#include"stdio.h" void main() {int i=1,n=1; for(i=1;i<=9;i++) for(n=1;n<=i;n++) {printf("%3d*%d=%d",i,n,i*n); if(n==i) printf("\n"); } getch(); }