Ask Question
28 May, 19:43

Write a program FindDuplicate. java that reads n integer arguments from the command line into an integer array of length n, where each value is between is 1 and n, and displays true if there are any duplicate values, false otherwise.

+2
Answers (1)
  1. 28 May, 22:47
    0
    public class FindDuplicate{ public static void main (String[] args) { Scanner input = new Scanner (System. in); int n = 5; int arr[] = new int[n]; for (int i=0; i =1 && inputNum <=n) { arr[i] = inputNum; } } for (int j = 0; j < arr. length; j++) { for (int k = 0; k < arr. length; k++) { if (j = = k) { continue; }else{ if (arr[j] = = arr[k]) { System. out. println ("True"); return; } } } } System. out. println ("False"); } }

    Explanation:

    Firstly, create a Scanner object to get user input (Line 4).

    Next, create an array with n-size (Line 7) and then create a for-loop to get user repeatedly enter an integer and assign the input value to the array (Line 9 - 14).

    Next, create a double layer for-loop to check the each element in the array against the other elements to see if there is any duplication detected and display "True" (Line 21 - 22). If duplication is found the program will display True and terminate the whole program using return (Line 23). The condition set in Line 18 is to ensure the comparison is not between the same element.

    If all the elements in the array are unique the if block (Line 21 - 23) won't run and it will proceed to Line 28 to display message "False".
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a program FindDuplicate. java that reads n integer arguments from the command line into an integer array of length n, where each ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers