¿Necesito un código Java que genere un número del 1 al 20 y forme un triángulo?

1 Respuestas


  • // Programa Estilo 1   class Triangle {public static void main (String [] ar) {int Limit = 20; int Prn = 1; for (int I = 1; I <= Limit; I ++) {for (int j = 1; j <= I; j ++) {if (Prn == Limit) return; System.out.print ("t" + Prn); Prn ++; } System.out.print ("n"); }}}  // Estilo de programa 2   class Triangle {public static void main (String [] ar) {int Limit = 10; for (int I = 1; I <= Limit; I ++) {for (int j = 1; j <= I; j ++) {System.out.print ("t" + I); } System.out.print ("n"); }}}

Escribe tu respuesta

Tu respuesta aparecerá después de la moderación