简单的*嵌套循环 话不多说直接上代码 for(int i=0;i<5;i++) { for(int j=0;j<i;j++) { System.out.print("*"); } System.out.println(); } 外部i确定行数,内部的j确定列数