Question: Need help with this assignment please, sorting arrays and writing to file undefined Page of 5 ZOOM Move the even and odd arrays into properly
Need help with this assignment please, sorting arrays and writing to file
undefined
Page of 5 ZOOM Move the even and odd arrays into properly sized arrays f. Display the properly sized arrays. Must Do and Tips Must Do You must use arrays, not an array list. Must Not Do Do not include palh names for the file. Use only the name assignment1.txt o File fileName = new File("assignment1.txt"); . When creating the non-duplicate arrays, you must use only the one even or odd array, that is: O DO NOT move the values from the file into an array then use a temporary array to locale and remove duplicates. o Instead, I want you perform array manipulation to strength your array processing skills. You must write code that walks through the array and determines if the file value is already in the array - that is - manually creale the non-duplicale array Tips: Finding is the file on your system To help find the file that is created on your hard drive, add the following code after you create the Print Writer: System.out.println("File is in directory:" + fileName.getAbsolutePath()); Tips: Exceptions You may have learned about exceptions and try/catch blocks in your Java class. Exceptions are important, but they add complexity to code. To eliminate the need for added complexity and the use of try/catch blocks, have main throw an IOException public static void main(String[] args) throws IOException { ---} Output Your output should look like the following: Output - Example Array Values
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
