1. 程式人生 > >利用for迴圈,打一個聖誕樹

利用for迴圈,打一個聖誕樹



public class testKs {


public static void main(String[] args) {

for(int a=0;a<=5;a++){

for(int c=19;c>=a;c-- ){
System.out.print(" ");
}
for(int b=0;b<=a;b++){
System.out.print("* ");
}
System.out.println(" ");
}
for(int a=2;a<=7;a++){
for(int c=19;c>=a;c-- ){
System.out.print(" ");
}
for(int b=0;b<=a;b++){
System.out.print("* ");
}
System.out.println(" ");
}
for(int a=5;a<=12;a++){
for(int c=19;c>=a;c-- ){
System.out.print(" ");
}
for(int b=0;b<=a;b++){
System.out.print("* ");
}
System.out.println(" ");
}
for(int a=11;a>0;a--){
for(int c=0;c<15;c++){
System.out.print(" ");
}
for(int b=6;b>0;b--){
System.out.print("| ");
}
System.out.println(" ");
}



}
}