Jump to content
Fórum Script Brasil
  • 0

Inverter Vetores


VILLA_LOBOS

Question

alguém consegue fazer o seguinte, e me dar uma força?

preciso preencher um vetor de 10 posições... até ae beleza...

em seguida, preciso inverter esse vetor....

eu criei outor vetor, (matriz unidimensional).....

e fiz dois for..... mas não to conseguindo a lógica

alguém pode me ajudar?

um abraço.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

olha o codigo ae

import javax.swing.*;

public class Exercicio2 {

/** Creates a new instance of Exercicio2 */

public Exercicio2() {

}

/**

* @param args the command line arguments

*/

public static void main(String[] args) {

double[] matriz,maux;

matriz = new double[10];

maux= new double[10];

int i=0,j=0;

String s="",c="";

int aux=0;

for (i=0; i<matriz.length; i++)

{

s+=(JOptionPane.showInputDialog("Informe valor"));

matriz = Double.parseDouble(s);

}

JOptionPane.showMessageDialog(null,"Valores \n"+s);

aux=maux.length;

for (i=0; i<matriz.length; i++)

{

maux[aux] = matriz;

c += Double.toString(maux[aux]);

aux--;

}

JOptionPane.showMessageDialog(null,"Valores Invertidos \n"+c);

}

}

ta dando esse erro:

java.lang.ArrayIndexOutOfBoundsException: 10

at Exercicio2.main(Exercicio2.java:42)

deve ser estouro de matriz, mas como eu resolve, hein?

Link to comment
Share on other sites

  • 0

Aqui:

aux=maux.length;
Você atribui o "tamanho" (length) do vetor para a "aux", que é 10, porém os índices vão de 0 a 9 (ou seja, são 10 elementos). Length te retorna o tamanho do vetor e não o último índice dele (esse é Length-1). Agora, não seria mais simples apenas inverter os valores das posições? 0 com 9, 1 com 8, 2 com 7, 3 com 6 e 4 com 5? Veja:
import javax.swing.JOptionPane;

public class Exercicio2 {
	public static void main(String[] args) {
  double matriz[] = new double[10];
  int i=0;
  double aux;
  
  String s = "";
  String valores = "";
  String ivalores = "";
  
  for (i=0; i<matriz.length; i++)
  {
  	s = JOptionPane.showInputDialog("Informe valor");
  	matriz[i] = Double.parseDouble(s);
  	valores += s + ", ";
  }
  
  JOptionPane.showMessageDialog(null,"Valores \n" + valores);
  
  for (i=0; i<(matriz.length/2); i++)
  {
  	aux = matriz[i];
  	matriz[i] = matriz[matriz.length-i-1];
  	matriz[matriz.length-i-1] = aux;
  }

  for (i=0; i<matriz.length; i++)
  {
  	ivalores += Double.toString(matriz[i]) + ", ";
  }
  
  JOptionPane.showMessageDialog(null,"Valores Invertidos \n" + ivalores);
	}
}

Sacou? wink.gif

Abraços,

Graymalkin

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...