Question: Little help with Matrix in Java Write a Java program that asks the users to enter a m times n matrix of integers, m and
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 1 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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
