*
*
public class test7 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int layer = 5;
for(int i = (layer - 1); i >= 1; i--){
int spaces = layer - i;
for(int j = 0; j < spaces; j++){
System.out.print(" ");
}
int stars = 2 * i - 1;
for(int j = 0; j < stars; j++){
System.out.print("*");
}
System.out.println();
}
for(int i = 1; i <= layer; i++){
int spaces = layer - i;
for(int j = 0; j < spaces; j++){
System.out.print(" ");
}
int stars = 2 * i - 1;
for(int j = 0; j < stars; j++){
System.out.print("*");
}
System.out.println();
}
}
}