1.外面循环语句来控制行数
2.里面循环语句来控制每行输出的点数(第几行就输出几个点)
int a=10; for(int b=1;b<=a;b++) { for(int c=1;c<=b;c++) {System.out.print("*");} System.out.println("");}