// Project 9.1 import java.util.Scanner; public class IntLists{ public static void main (String[] args){ Scanner reader = new Scanner(System.in); // Initialize the arrays and logical sizes int[] evenList = new int[10]; int[] oddList = new int[10]; int[] negativeList = new int[10]; int evenCount = 0, oddCount = 0, negativeCount = 0; // Get the inputs for (int i = 0; i < 10; i++){ System.out.print("Enter an integer: "); int data = reader.nextInt(); if (data < 0){ negativeList[negativeCount] = data; negativeCount++; }else if (data % 2 == 0){ evenList[evenCount] = data; evenCount++; }else{ oddList[oddCount] = data; oddCount++; } } // Complete this section: Output the data in the arrays } }