/*内循环的循环变量不能是外循环的循环变量*/#include "stdio.h"void main(){ int r,c; for(r=1;r<=9;r++)//控制的是行数 { for(c=1;c<=r;c++)//每行的列数 { printf("*"); } printf(" "); }}