看懂下面的例子,就知道循环的嵌套了:main(){ int i,j;i=1;while(i<=9){ j=1;while(j<=i){ printf("%2d×%2d=%2d ",i,j,i*j);} printf("\n");} }