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

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. For example, if the user enters the following content: The program should output: The transpose is: The maximum of all the column elements: The average of all the row elements

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!