Question: Java program: - Program must be named: ArrayMath.java - Make sure the program is properly documented and aligned uniformally - Create a 10 x 10
Java program: - Program must be named: ArrayMath.java - Make sure the program is properly documented and aligned uniformally - Create a 10 x 10 two dimensional array of int data type (Remember that arrays start with 0, not 1. ) - Load each index in the array with the multiplication of each (row * column) location - Using printf display the content of each index, ALIGNED. - Create an algorithm using a loop that will add all the values in all odd columns, and print their total aligned below the column. - Print the addition of all values in each index in the array. This is a sum of all the elements of the array. - Print your name and School ID below all other output. - In the main method declare the two dimensional array. - From the main method, passing the two dimensional array, call a method named arrays() - In the arrays method do the rest of the program
Below is an example of the output that should be created.

:\Users.\Downloads>java ArrayMath 0 1 2345 6 7 8 9 8 1 12 14 16 18 9 12 15 18 21 24 27 8 12 16 20 2428 32 36 5 10 15 2025 30 35 40 45 6 12 18 24 3036 42 8 54 0 7 1421 28 35 42 49 56 63 8 16 24 32 448 56 64 72 0 9 18 27 36 45 5463 72 81 405 4 otal: 45 rray Index Total: 2025 ame: anther ID: XXXXXXX 135 225 315 :\Users Downloads>
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
