0
ayuda por favor
Ocupo hacer este programa con while y do-while sustituyendo el for public class programa14{ public static void main (String[]args){ int a; a=6; int b,c; for (b=0;b<6;b++) { for (c=6-b;c>0;c--) { System.out.print(a); } System.out.println(); a=a-1; } } }
1 Resposta
0
¿Cambiar de "for" a "while"?