94.5k views
4 votes
Write a java program to

1. Create a 2D array of integers
2. Initialize the array by getting input from the user
3. Get the contents of 2D array and add the even numbers to single dimensional array called Eve and the odd numbers to single dimensional array called OD
4. Print the contents of 2D array and even and odd arrays

User Turanga
by
7.4k points

1 Answer

1 vote

Final answer:

To create a Java program that creates a 2D array, initializes it with user input, separates even and odd numbers into separate arrays, and prints the contents of all arrays.

Step-by-step explanation:

To complete this task, you can follow the steps below: Create a 2D array of integers using the 'int[][]' syntax. Initialize the array by using nested loops to get input from the user and assign values to each element. Create two empty single-dimensional arrays, 'even' and 'odd', to store the even and odd numbers respectively. Use nested loops to iterate through the 2D array and check if each element is even or odd.

If the element is even, add it to the 'even' array, and if it is odd, add it to the 'odd' array. Print the contents of the original 2D array, as well as the 'even' and 'odd' arrays. Here is a code snippet that demonstrates this process: import java.util.Scanner;

User Holger Sindbaek
by
8.2k points