Question:
Two arrays are said to be compatible if they are of the same size and if the ith element in the first array is greater than or equal to the ith element in the second array for all i elements.If the array size is zero or lesser then display the message “Invalid array size”.Write a Java program to find whether 2 arrays are compatible or not.If the arrays are compatible display the message as “Arrays are Compatible” ,if not then display the message as “Arrays are Not Compatible”.
Sample Input 1:
Enter the size for First array:
5
Enter the elements for First array:
5
14
17
19
15
Enter the size for Second array:
5
Enter the elements for Second array:
2
5
9
15
7
Sample Output 1:
Arrays are Compatible
Sample Input 2:
Enter the size for First array:
3
Enter the elements for First array:
1
4
7
Enter the size for Second array:
5
Enter the elements for Second array:
2
5
9
5
7
Sample Output 2:
Arrays are Not Compatible
Sample Input 3:
Enter the size for First array:
-2
Sample Output 3:
Invalid array size
Code:
CompatibleArrays.java
import java.util.*; public class CompatibleArrays { public static void main (String[] args) { Scanner sc=new Scanner(System.in); //1st array System.out.println("Enter the size for First array:"); int n1=sc.nextInt(); int flag=0; if(n1>0) { int[] arr1=new int[n1]; System.out.println("Enter the elements for First array:"); for(int i=0;i<n1;i++) { arr1[i]=sc.nextInt(); } //2nd array System.out.println("Enter the size for Second array:"); int n2=sc.nextInt(); if(n2>0) { int[] arr2=new int[n2]; System.out.println("Enter the elements for Second array:"); for(int i=0;i<n2;i++) { arr2[i]=sc.nextInt(); } if(n1==n2) { for(int i=0; i<n1;i++) { if(arr1[i]>=arr2[i]) { flag++; } } if(flag==n1) { System.out.println("Arrays are Compatible"); } else { System.out.println("Arrays are not Compatible"); } } else { System.out.println("Arrays are Not Compatible"); } } else { System.out.println("Invalid array size"); } } else { System.out.println("Invalid array size"); } } }
Recommended:
- Array square
- Generate number using odd digits
- Alternate Number Difference
- Next Greatest number
- Mark Comparison
- Print the characters in descending order
- Vowels in a fishBowl
- Least offer
- Ascending and descending order
- Mail Domain
- Count repeating words
- Sentence – Convert to upper and lower
- Count consecutive repeating characters
- Zig zag Array
- Pass and Fail Count
- Search a Course
- Average and Grade Calculation
- String – Find and replace the character (first occurrence)
- Sort the first and second half of an array
- Retail Shop
- Palindrome
- Numerology
- InitCap
- Array Compatiblilty
- Sum of the maximum and the minimum element
- String Concatenation
- Find Average Age
- Login