Informática, perguntado por juditepatriciaa6105, 5 meses atrás

1. Dado o código em JAVA abaixo:import java. Util. *;public class Prova2{ public static void main(String[] args){int a[], b[], c[], i;a = new int[10];b = new int[10];c = new int[10];Scanner in = new Scanner(System. In);for (i=0; i<=9; i++){System. Out. Print("Digite A: ");a[i] = in. NextInt();}for (i=0; i<=9; i++){System. Out. Print("Digite B: ");b[i] = in. NextInt();}for (i=0; i<=9; i++){c[i] = a[i]*b[i];System. Out. Print(c[i]+",");} } }Considerando para o programa acima que o usuário insira os seguintes valores:A = [ 1, 5, 7, 9, 3, 0, 2, 8, 30, 3]B= [ 7, 8, 2, 0, 1, 43, 5, 7, 2, 1]Informar qual alternativa contém o valor correto para o vetor C:Leitura Avançada(1 Ponto)C = [ 8, 13, 9, 9, 4, 43, 7, 15, 32, 4]C = [ -6, -3, -5, 9, 2, -43, -3, 1, 28, 2 ]C = [ 7, 40, 14, 0, 3, 0, 10, 56, 60, 3 ]C está vazioNenhuma das anteriores.

Soluções para a tarefa

Respondido por aleprezzi
0

Resposta:

C = [ 8, 13, 9, 9, 4, 43, 7, 15, 32, 4]

o programa soma os valores do vetor A com os valores do vetor B

java. Util. *;

public class Prova2{  

public static void main(String[] args){

 int a[], b[], c[], i;

 a = new int[10];

 b = new int[10];

 c = new int[10];

 Scanner in = new Scanner(System. In);

 for (i=0; i<=9; i++){

  System. Out. Print("Digite A: ");a[i] = in. NextInt();

 }

 for (i=0; i<=9; i++){

  System. Out. Print("Digite B: ");b[i] = in. NextInt();

 }

 for (i=0; i<=9; i++){

  c[i] = a[i]*b[i];

  System. Out. Print(c[i]+",");

 }  

}  

}

Explicação:

Perguntas interessantes