Add each element in origList with the corresponding value in offsetAmount. Print each sum followed by a space. Ex: If origList = {4, 5, 10, 12} and offsetAmount = {2, 4, 7, 3}, print:

Respuesta :

Answer:

import java.util.Scanner;

public class SumVectorElements

{

public static void main(String[] args)

{

final int NUM_VALS = 4;

int[] origList = new int[NUM_VALS];

int[] offsetAmount = new int[NUM_VALS];

int i = 0;

origList[0] = 40;

origList[1] = 50;

origList[2] = 60;

origList[3] = 70;

offsetAmount[0] = 5;

offsetAmount[1] = 7;

offsetAmount[2] = 3;

offsetAmount[3] = 0;

/* Your solution goes here */

// Print the Sum of each element in the origList

// with the corresponding value in the

// offsetAmount.

for (i = 0; i < NUM_VALS; i++)

{

System.out.print((origList[i] + offsetAmount[i])+" ");

}

System.out.println("");

return;

}

}

Explanation: see attachment below

Ver imagen dammymakins
Ver imagen dammymakins