nkdos Posted November 19, 2010 Report Share Posted November 19, 2010 Hola, como dice el titulo tengo que imprimir dos arreglos de forma invertida...y no logro entender como hacerlo, ademas me debe salir uno al lado de otro por ejemplo arreglo1 arreglo2 1 6 2 7 3 8 4 9 5 10 miren esto es lo que tengo... public class Ejercicio3 { public static void main(String args[]) { int arreglo1[] = {1,2,3,4,5}; int arreglo2[] = {6,7,8,9,10}; System.out.println("Arreglo1 Arreglo2 "); System.out.println(arreglo2[4]+" "+arreglo1[4]); System.out.println(arreglo2[3]+" "+arreglo1[3]); System.out.println(arreglo2[2]+" "+arreglo1[2]); System.out.println(arreglo2[1]+" "+arreglo1[1]); System.out.println(arreglo2[0]+" "+arreglo1[0]); } } no me causa ningun problema... Antes de mostrarlo de forma invertida lo tenia con un for public class Ejercicio2 { public static void main(String args[]) { //ejercicio1 int arreglo1[] = {1,2,3,4,5}; int arreglo2[] = {6,7,8,9,10}; System.out.println("Arreglo1 Arreglo2 "); for(int i=0; i<5;i++) System.out.println(arreglo1[i]+" "+arreglo2[i]); } } mi duda es, como puedo hacer que con un for, la salida sea invertida??? o no se puede??? Link to comment Share on other sites More sharing options...
ranc320 Posted November 19, 2010 Report Share Posted November 19, 2010 en vez de incrementar el indice, decrementalo o tambien con un incremento, pero con indice [5-i] Link to comment Share on other sites More sharing options...
nkdos Posted November 19, 2010 Author Report Share Posted November 19, 2010 me salio de la siguiente forma: public class Ejercicio3 { public static void main(String args[]) { int arreglo1[] = {1,2,3,4,5}; int arreglo2[] = {6,7,8,9,10}; int []traspaso = new int [5]; for(int i=0;i<5;i++) traspaso[i] = arreglo1[i]; for(int i=0;i<5;i++) arreglo1[i] = arreglo2[i]; for(int i=4;i>-1;i--) arreglo2[i] = traspaso[i]; System.out.println("Arreglo1 Arreglo2 "); for(int i=4;i>-1;i--) System.out.println(arreglo1[i]+" "+arreglo2[i]+"\n"); } } pero aun no entiendo la logica del porque es - :S Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now