Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Count the two elements of two given arrays of integers with same length, differ by 1 or less

Java Basic: Exercise-100 with Solution

Write a Java program to count the two elements of two given arrays of integers with same length, differ by 1 or less.

Pictorial Presentation:

Java Basic Exercises: Count the two elements of two given arrays of integers with same length, differ by 1 or less.

Sample Solution:

Java Code:

import java.util.*; 
import java.io.*; 
 public class Exercise100 {
 public static void main(String[] args)
 {
	int[] array_nums1 = {10, 11, 10, 20, 43, 20, 50};
	int[] array_nums2 = {10, 13, 11, 20, 44, 30, 50};
	System.out.println("Array1: "+Arrays.toString(array_nums1)); 
	System.out.println("Array2: "+Arrays.toString(array_nums2)); 
	int ctr = 0;
    
    for(int i = 0; i < array_nums1.length; i++) {
        if(Math.abs(array_nums1[i] - array_nums2[i]) <= 1 && array_nums1[i] != array_nums2[i])
            ctr++;
    }
                    
    System.out.printf("Number of elements: "+ctr);
	System.out.printf("\n");	 
  }
}

Sample Output:

Array1: [10, 11, 10, 20, 43, 20, 50]                                   
Array2: [10, 13, 11, 20, 44, 30, 50]                                   
Number of elements: 2

Flowchart:

Flowchart: Java exercises: Count the two elements of two given arrays of integers with same length, differ by 1 or less.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to check if a specified number appears in every pair of adjacent element of a given array of integers.
Next: Write a Java program to check if the number of 10 is greater than number to 20 in a given array of integers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe