二叉樹對稱-遞迴
阿新 • • 發佈:2020-12-20
對星號採用迴圈的形式排列
package one;
public class oneday2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i=1;i<5;i++) { //這裡採用空格進行對星號填充位置
System.out.println(" ");
for(int j=0;j<4-i;j++) {
System.out.print(" ");
}
for(int h=0;h<2*i-1;h++) {//對星號進行輸出
System.out.print("*");
}
}
}
}