Java program to multiply corresponding elements of two lists

Here, we are implementing a java program that will multiply corresponding elements of two array lists. By IncludeHelp Last updated : December 31, 2023

Problem statement

Given two array lists and we have to multiply its corresponding elements using java program.

Example:

Input:
Array1: [2, -5, 4, -2]
Array2: [6, 4, -5, -2]

Output:
Result: 12 -20 -20 4

Program to multiply corresponding elements of two array lists in java

import java.util.Arrays;

public class ExArrayMultiplyCorresElem {
  public static void main(String[] args) {
    // take a default string array you wants.
    String result = "";
    int[] left_array = {
      2,
      -5,
      4,
      -2
    };
    int[] right_array = {
      6,
      4,
      -5,
      -2
    };

    // print both the string array first.
    System.out.print("\nArray1: " + Arrays.toString(left_array));
    System.out.println("\nArray2: " + Arrays.toString(right_array));
    for (int i = 0; i < left_array.length; i++) {
      int num1 = left_array[i];
      int num2 = right_array[i];

      // this will calculate the product of the string array.
      result += Integer.toString(num1 * num2) + " ";
    }
    // print the result.
    System.out.println("\nResult: " + result);
  }
}

Output

The output of the above example is:

Array1: [2, -5, 4, -2]
Array2: [6, 4, -5, -2]

Result: 12 -20 -20 4 

Java ArrayList Programs »

Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.