Question: Write a Java program that asks the users to enter a m times n matrix of integers, m and n being the number of rows

Write a Java program that asks the users to enter a m times n matrix of integers, m and n being the number of rows and columns, respectively. The program stores this matrix into a two-dimensional m times n array. Then, write a class with the following three methods: Method accepts the m times n array as its argument, performs its transpose, and returns the transposed n times m array; Method 2 accepts the jth column of the array as its argument, and returns the maximum of the column elements; Method 3 accepts the ith row of the array as its argument, and returns the average of the row elements. Use this class in the main program to find the transpose, the maximum of column elements, and the average of row elements. The program should display all three results as shown below. For example, if the user enters the following content: The program should output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
