class Test2_1For {
/*打印如下图案
* * * * *
* * * *
* * *
* *
*
*/
public static void main(String []args){
for(int x = 1; x <= 5;x++){
for(int y = 1;y < x; y++){
System.out.print(" ");
}
for(int z = 1; z<= 6-x;z++){
System.out.print("* ");
}
System.out.println();
}
}
}
class Test3_1For {
/*
*
* *
* * *
* * * *
* * * * *
*/
public static void main(String []args){
for(int x = 1;x <= 5;x++){
for(int y = 1;y <= 5-x;y++){
System.out.print(" ");
}
for(int z = 1; z <= x; z++){
System.out.print("* ");
}
System.out.println();
}
}
}
|
|