Java代码案例41——嵌套循环输出星号三角形 龙龙 2022-12-21 22:12 源文件 package xiangmu; public class Ceshi { public static void main(String args[]) { // 嵌套循环输出星号三角形 for(int m = 1; m <= 5; m++) { for(int i = 1; i <= m; i++) { System.out.print("*"); } System.out.println(); } } } * ** *** **** *****