Mi código es este:
Código:
GRACIAS /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package arbolnavidad; import java.util.*; /** * * @author Joan */ public class ArbolNavidad { /** * @param args the command line arguments */ public static void main(String[] args) { Scanner leer= new Scanner(System.in); System.out.println("Introduce el numero de pisos"); int n=leer.nextInt(); n=n*2-1; for (int i=1; i<=n; i+=2) { for( int j=1; j<=n-i; j+=2){ System.out.print(" "); //imprime los espacios } for (int k=1; k<=i; k++) { System.out.print ("*"); } System.out.println(); } } }