Question
Design and implement a Java program for programming exercise 8.1, page 305 (name it SumArrayColumns) as described in the problem statement. Write method sumColumn() as
Design and implement a Java program for programming exercise 8.1, page 305 (name it SumArrayColumns) as described in the problem statement. Write method sumColumn() as specified. To test this method, the main method of your program prompts the user to enter a 3-by-4 matrix and displays the sum of each column (by calling method sumColumn()). The method sumColumn() must be designed to handle two-dimensional arrays with any number of rows and columns. Design the main method of your program to handle all input and output and to allow the user to re-run the program with different sets of inputs (i.e., use a loop). Document your code and organize the output using appropriate formatting techniques.
*8. Sum elements column by column) Write a method that returns the sum of all the elements in a specified column in a matrix using the following header: public static double sumColumn(doubleC]] m, int columnIndex) Write a test program that reads a 3-by-4 matrix and displays the sum of each column. Here is a sample run: Enter a 3-by-4 matrix row by row: 1.5 2 3 4Enter 5.5 6 7 8Enter 9.5 1 3 1 Enter Sum of the elements at column 0 is 16.5 Sum of the elements at column 1 is 9.0 Sum of the elements at column 2 is 13.0 Sum of the elements at column 3 is 13.0Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started