1 for(int a = 5; a > 0 ; a--) 2 { 3 for(int b = 1; b <= a; b++) 4 { 5 System.out.print(" "); 6 } 7 for(int c = 5; c >= a; c--) 8 { 9 System.out.print("B"); 10 } 11 System.out.println(""); 12 } 13 14 for(int a = 4; a > 0 ; a--) 15 { 16 for(int d = 1; d > 0; d--) 17 { 18 System.out.print(" "); 19 } 20 for(int b = 4; b >= a; b--) 21 { 22 System.out.print(" "); 23 } 24 for(int c = 1; c <= a; c++) 25 { 26 System.out.print("B"); 27 } 28 System.out.println(""); 29 }
菱形是画出来了,不过说实话自己越看越别扭。。。
套用了7个for循环,其中一个是为了排版用的
时间: 2024-12-16 06:47:59