1. Faça um algoritmo que copie o conteúdo de um vetor em um segundo vetor. em java? gostaria de saber, por favor.
Respostas
respondido por:
0
int[] vetor = {0,1,2};
int[] vetor2 = new int[vetor.length];
for (int i = 0;i<vetor.length;i++) {
vetor2[i] = vetor[i];
}
int[] vetor2 = new int[vetor.length];
for (int i = 0;i<vetor.length;i++) {
vetor2[i] = vetor[i];
}
respondido por:
0
Resposta:
Fiz esse metodo
Explicação:
public static void main( String[] args){
String[] Vetor1 = {"Joao", "Paulo", "Pedro", "Carla" , "Flavia"};
String[] Vetor2 = new String[Vetor1.length];
for(int i=0; i < Vetor1.length; i++){
Vetor2[i] = Vetor1[i];
System.out.print(Vetor2[i]+ " ");
}
}
Perguntas similares
6 anos atrás
6 anos atrás
6 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás